%% -*- mode: latex; coding: utf-8 -*- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%% A nice looking LaTeX2e English template, designed to be as minimalistic and complete as possible, and to be compiled with PDFLaTeX %%%% by Lilian Besson, (C) 2014-16 %%%% (http://perso.crans.org/besson/publis/latex/template_minimalist.tex) %%%% It is used with autonomize.sh to produce autonomous latex document from autotex-powered document (it adds all the necessary headers) %%%% (https://bitbucket.org/lbesson/bin/src/master/autonomize.sh) %%%% mailto:Lilian.BESSON[@]ens-cachan[.]fr %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[a4paper, 11pt]{article} %% If necessary, change the police size here % This document is (C) and ©, Mahindra École Centrale, 2014,15 % Written by Lilian Besson (https://bitbucket.org/lbesson/) for the MA 101/102 course (2014-15). %%%%%%%%%%%%%%%%%%%%%%% Import packages %%%%%%%%%%%%%%%%%%%%% %% Well understand input, and nice output \usepackage[french]{babel} \usepackage[utf8]{inputenc} \usepackage{lmodern} \usepackage[T1]{fontenc} \usepackage{cmap,enumerate,multicol} % {fixltx2e} \usepackage{amsmath,amsfonts,amssymb,amsthm,bbm,mathabx} \usepackage{mathrsfs,graphicx,xcolor,color,float,framed,scrextend} \everymath{\displaystyle} \usepackage{enumitem} % use {enumerate} if enumitem is not available \usepackage[scale=0.75]{geometry} \newcommand{\mytitle}[0]{MonTitreAChangerViaAutoTeX} \usepackage{lastpage,fancyhdr} \pagestyle{fancyplain} \renewcommand{\headrulewidth}{0.2pt} \renewcommand{\footrulewidth}{0.2pt} %% If necessary, change here the header and footer \lhead{\textit{\mytitle{}}} %% Left header \chead{\fancyplain{}{\href{http://perso.crans.org/besson/colles/MP/}{Colles Maths MP}}} %% Center header \rhead{\textit{\today}} %% Right header \lfoot{\href{mailto:besson@crans.org}{Lilian Besson}} %% Left footer \cfoot{\thepage/\pageref{LastPage}} %% Center footer \rfoot{\href{http://perso.crans.org/besson/colles/MP/}{MP, Lycée Lakanal}, 2015-16} %% Right footer \usepackage[plainpages=false,pdfcenterwindow=true, pdftoolbar=false,pdfmenubar=false,backref, pdftitle={\mytitle{}}, %% If necessary, change here the default PDFAuthor value pdfauthor={Lilian Besson, ENS Cachan, France}, linkcolor=black,citecolor=black,filecolor=black,urlcolor=black]{hyperref} %% Allow to add URL hyperlink with the command \href. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \newtheorem{problem}{Problème} \newtheorem{remark}{Remarque} \newtheorem{lemma}{Lemme} %% Options \numberwithin{equation}{section} %% Option to number equations \DeclareGraphicsExtensions{.pdf,.png,.jpg,.svg} %% Order to load the images \title{\mytitle{}} %% Define Title of the document \date{\today{}} %% And the date %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Type here your LaTeX code ! %------------------------------------------------------------------------------ % Here is the content of your document (let MyFileNameToChangeWithAutoTex.tex) to work with autotex. % autotex can be download from http://perso.crans.org/besson/bin/autotex % or https://bitbucket.org/lbesson/bin/src/master/autotex \input{MyFileNameToChangeWithAutoTex.tex} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \end{document} %% END of template_minimalist.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%