%% -*- 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-15 %%%% (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[english]{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]{Default title} \usepackage{lastpage,fancyhdr} \pagestyle{fancyplain} \renewcommand{\headrulewidth}{0.2pt} \renewcommand{\footrulewidth}{0.2pt} %% If necessary, change here the header and footer \lhead{\it{\mytitle{}}} %% Left header \chead{\fancyplain{}{\href{http://perso.crans.org/besson/ma102}{\textbf{MA102}}}} %% Center header \rhead{\it{\today}} %% Right header \lfoot{\small{Please, report any issue to \href{mailto:MA102_at_crans_._org}{\texttt{{MA102}{@}{crans.org}}}}} %% Left footer \cfoot{\thepage/\pageref{LastPage}} %% Center footer \rfoot{\tt{\href{http://www.MahindraEcoleCentrale.edu.in/}{Mahindra École Centrale}}, 2015} %% Right footer \usepackage[plainpages=false,pdfcenterwindow=true, pdftoolbar=false,pdfmenubar=false,backref, pdftitle={\mytitle{}}, %% If necessary, change here the default PDFAuthor value pdfauthor={Mahindra École Centrale, Hyderabad, Telangana}, linkcolor=black,citecolor=black,filecolor=black,urlcolor=black]{hyperref} %% Allow to add URL hyperlink with the command \href. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \newtheorem{problem}{Problem} \newtheorem{remark}{Remark} \newtheorem{lemma}{Lemma} %% 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 ! %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \end{document} %% END of template_minimalist.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%