-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
35 lines (30 loc) · 1021 Bytes
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\input{commands}
\DefineBibliographyStrings{english}{%
andothers = {\em et\addabbrvspace al\adddot}
}
%adding the bibtex file name
\addbibresource{thesis.bib}
% Use this for adding a title page already rendere©d as pdf (with graphics as prescribed by your university)
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-]{chapters/title/title_page}
% Adding content like the abstract, toc, and so on.
\frontmatter
\input{chapters/abstract/abstract}
\tableofcontents
\listoffigures
\listoftables
% The meat of your thesis, the different chapters
\mainmatter
\input{chapters/chap_1/chap_1}
\input{chapters/chap_2/chap_2}
\input{chapters/appendix/appendix}
%Bibliography and stuff after your main text (Acknowledgements, CV, publications, etc.)
\backmatter
\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\markboth{Bibliography}{Bibliography}
\printbibliography[heading=none]
%Stuff to be included after the bibliography
\input{chapters/acknowledgements/acknowledgements}
\end{document}