UPM_thesis_template_en
Autor
Maria Blanco (UPM)
Last Updated
hace un mes
License
Creative Commons CC BY 4.0
Resumen
UPM Doctoral Thesis Template (English)
% --------------------------
% Document class
% --------------------------
\documentclass[
A4paper, % paper size A4
twoside, % onesite or twoside printing
openright, % doublepage cleaning ends up right side
chapterprefix=true, % prefix for chapter marks
12pt, % font size
headings=normal, % size of headings
titlepage=on % own page for each title page
]{book}
% **************************************************
% THESIS details
% **************************************************
\newcommand{\University}{\protect{Universidad Polit\'ecnica de Madrid}}
\newcommand{\UNIVERSITY}{\protect{UNIVERSIDAD POLIT\'ECNICA DE MADRID}}
\input{thesisDetails}
% **************************************************
% Settings
% **************************************************
\input{settings}
% **************************************************
% Begin document
% **************************************************
\begin{document}
% --------------------------
% Cover and front matter
% --------------------------
\frontmatter
\pagestyle{empty} % no header nor footer
\input{frontmatter/1_cover}
\newpage
\input{frontmatter/2_frontpage}
\newpage
\pagenumbering{roman} % roman page numbering
\pagestyle{plain} % empty header, just page number in footer
\input{frontmatter/3_teseo}
\cleardoublepage
\input{frontmatter/4_dedication} % dedication (optional)
\cleardoublepage
\input{frontmatter/5_acknowledgement} % acknowledgement (optional)
\newpage
\input{frontmatter/6_abstract} % abstract (in English and Spanish)
\newpage
\selectlanguage{english}
\setcounter{tocdepth}{3} % define depth of toc
\tableofcontents % display table of contents
\addcontentsline{toc}{section}{List of Figures}
\listoffigures
\addcontentsline{toc}{section}{List of Tables}
\listoftables
\newpage
\input{frontmatter/7_acronyms}
\cleardoublepage
% --------------------------
% Main matter
% --------------------------
\mainmatter
\pagenumbering{arabic} % arabic page numbering
\setcounter{page}{1} % set page counter
\pagestyle{fancy} % fancy header and footer
\parskip=7pt % space after each paragraph
\parindent=0pt % suppress indentation of paragraphs
% Chapters
\include{mainmatter/chapter1}
\include{mainmatter/chapter2}
\include{mainmatter/chapter3}
\include{mainmatter/chapter4}
\include{mainmatter/chapter5}
\include{mainmatter/chapter6}
\cleardoublepage
% --------------------------
% Back matter
% --------------------------
\backmatter
\printbibliography[title=Referencias, heading=bibintoc]
\appendix
\chapter{Annexes}
% **************************************************
% End of document
% **************************************************
\end{document}