This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
msc-thesis.tex
93 lines (76 loc) · 2.95 KB
/
msc-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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
% *****************************************************************************
% A Classic Thesis Style
% An Homage to The Elements of Typographic Style
%
% Copyright (C) 2015 André Miede http://www.miede.de
%
% If you like the style then I would appreciate a postcard. My address
% can be found in the file ClassicThesis.pdf. A collection of the
% postcards I received so far is available online at
% http://postcards.miede.de
%
% *****************************************************************************
\RequirePackage{fix-cm} % fix some latex issues see: http://texdoc.net/texmf-dist/doc/latex/base/fixltx2e.pdf
\documentclass[%twoside,openright,
titlepage,numbers=noenddot,headinclude,%1headlines,%
%%letterpaper a4paper
footinclude=true,cleardoublepage=empty,abstractoff, % <--- obsolete, remove (todo)
BCOR=5mm,paper=letter,fontsize=11pt,
ngerman,american,
]{scrreprt}
\input{classicthesis-config}
% Moved all page numbers to the bottom center:
% https://tex.stackexchange.com/questions/232693/get-the-page-number-to-the-bottom-with-classicthesis
\clearscrheadfoot
\ohead[]{\headmark}
\cfoot[\pagemark]{\pagemark}
% \makeindex
\addbibresource{Bibliographies/Introduction.bib}
\addbibresource{Bibliographies/CEI.bib}
\addbibresource{Bibliographies/Data.bib}
\addbibresource{Bibliographies/LookupTable.bib}
\addbibresource{Bibliographies/Optimization.bib}
\addbibresource{Bibliographies/UncertaintyQuantification.bib}
\addbibresource{Bibliographies/Colophon.bib}
\begin{document}
\frenchspacing
\raggedbottom
\selectlanguage{american} % american ngerman
%\renewcommand*{\bibname}{new name}
%\setbibpreamble{}
\pagenumbering{roman}
\pagestyle{plain}
% Moving page numbers to bottom center
% https://tex.stackexchange.com/questions/148387/setting-page-numbers-in-bottom-center-in-classicthesis-two-sided-page
% \deftripstyle{pgnumbottomcenter}{}{}{}{}{\pagemark{}}{}
% \pagestyle{pgnumbottomcenter}
% \renewcommand{\chapterpagestyle}{pgnumbottomcenter}
\include{FrontBackmatter/ThesisTitlepage}
\include{FrontBackmatter/AuthorDeclaration}
%\include{FrontBackmatter/Titlepage}
%\include{FrontBackmatter/Titleback}
\cleardoublepage\include{FrontBackmatter/Abstract}
\cleardoublepage\include{FrontBackmatter/Acknowledgments}
\cleardoublepage\include{FrontBackmatter/Dedication}
\pagestyle{scrheadings}
\cleardoublepage\include{FrontBackmatter/Contents}
\cleardoublepage\pagenumbering{arabic}
\cleardoublepage % use here to avoid problems with pdfbookmark
\include{Chapters/Introduction}
\include{Chapters/CEI}
\include{Chapters/Data}
\include{Chapters/LookupTable}
\include{Chapters/Optimization}
\include{Chapters/UncertaintyQuantification}
\include{Chapters/Conclusion}
\include{FrontBackmatter/Bibliography}
\appendix
%\renewcommand{\thechapter}{\alph{chapter}}
\cleardoublepage
\include{Appendices/SupplementaryFigures}
\include{Appendices/CodeListings}
\include{Appendices/Colophon}
%\cleardoublepage
%\addcontentsline{toc}{chapter}{\textsc{index}}
%\printindex
\end{document}