
ETH Zurich LRE Thesis Template
Author:
LRE ETH Zurich
Last Updated:
2 года назад
License:
Creative Commons CC BY 4.0
Аннотация:
Thesis LaTeX Template

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
%% ----------------------------------------------------------------------------
% Adapted from the CVL Lab at ETH by Mrinmaya Sachan
%% ----------------------------------------------------------------------------
\documentclass[pdftex,11pt,openright,headsepline]{book}
\usepackage[margin=1in,headheight=13.6pt]{geometry}
\usepackage{paralist}		% List environment
\usepackage{color}		% For colored text
\usepackage{times}
\usepackage{amsfonts}		% Additional math fonts
\usepackage{amsmath}		% Math symbols
\usepackage{latexsym}
\usepackage{graphicx}		% For including images
% \usepackage{listings}		% If listings are needed
\usepackage{mydefs}		% Some of our own definitions
% \usepackage{wrapfig}		% To wrap images
% \usepackage{algorithmic}	% Nice algorithm environment
% \usepackage{algorithm}
\usepackage{fancyhdr}		% Produce the nice header
%\usepackage{fullpage} % Use the full page
% Change the appearance of the header. Here \MakeUppercase is hard-coded, so renewing this command allows to elegantly change the header appearance.
\renewcommand{\MakeUppercase}{\scshape}
% Set the headings' appearance in the ``fancy'' pagestyle
\fancyhead{}
\fancyhead[RO, LE]{\leftmark}
\fancyfoot{}
\fancyfoot[RO, LE]{\thepage}
% The first pages shall be empty, even no page numbering 
\begin{document}
\pagestyle{empty} % even no page number
\fancypagestyle{plain}{
  \renewcommand{\headrulewidth}{0.0pt}
  \fancyfoot{}
  \fancyhead{}
}
% Title page, modify accordingly 
\input{title.tex}
\cleardoublepage
\input{abstract.tex}
% Input here any acknowledgements
\input{ack.tex}
\cleardoublepage
\newpage
% % Chapter-pages etc. use the ``plain'' pagestyle - since we don't want to have a heading at all at chapter-pages, redefine plain accordingly. Don't forget the page number. 
\fancypagestyle{plain}{
  \renewcommand{\headrulewidth}{0.0pt}
  \fancyfoot{}
  \fancyfoot[RO, LE]{\thepage}
  \fancyhead{}
}
\pagestyle{fancy}
\pagenumbering{Roman}
% Insert table of contents
\tableofcontents
% Insert list of figures
\listoffigures
\cleardoublepage
% Insert list of tables
\listoftables
\cleardoublepage
\newpage
\pagenumbering{arabic}
%% ----------------------------------------------------------------------------
% Actual text comes here - defer it to other files and use \input{bla.tex}, ..
%% ----------------------------------------------------------------------------
\input{intro.tex}
\input{relatedwork.tex}
\input{materialsandmethods.tex}
\input{experimentsandresults.tex}
\input{discussion.tex}
\input{conclusion.tex}
%% ----------------------------------------------------------------------------
% If Appendix is needed
%% ----------------------------------------------------------------------------
\appendix
\input{appendix.tex}
%% ----------------------------------------------------------------------------
% Bibliography is stored in references.bib file, and can often be found
% online on webpages like dblp.uni-trier.de
%
% To include it in your thesis, run
%  pdflatex main
%  bibtex main
%  pdflatex main
%  pdflatex main
%
% This ensures all references are done correctly.
%% ----------------------------------------------------------------------------
\bibliographystyle{plain}
\bibliography{references}
\end{document}