forked from Pseudomanifold/latex-mimosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-thesis.tex
113 lines (85 loc) · 2.83 KB
/
my-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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
% **************************************************
% Document Class Definition
% **************************************************
\documentclass{mimosis}
% **************************************************
% Setup YOUR thesis document in this file !
% **************************************************
\input{my-thesis-setup}
% **************************************************
% Document CONTENT
% **************************************************
\begin{document}
% uncomment the following command to fill up pages with
% whitespace instead of aligning the first and last lines
% of a page (see \raggedbottom vs. \flushbottom)
%\raggedbottom
% --------------------------
% rename document parts
% --------------------------
% > set short label names for floating environments figure and table
%\renewcaptionname{ngerman}{\figurename}{Abb.}
%\renewcaptionname{ngerman}{\tablename}{Tab.}
\renewcaptionname{english}{\figurename}{Fig.}
\renewcaptionname{english}{\tablename}{Tab.}
% --------------------------
% Front matter
% --------------------------
\pagenumbering{roman} % roman page numbing (invisible for empty page style)
\pagestyle{empty} % no header or footers
\input{content/titlepages} % INCLUDE: all titlepages
\pagestyle{plain} % display just page numbers
\setcounter{tocdepth}{2} % define depth of toc
\tableofcontents % display table of contents
\cleardoublepage
% --------------------------
% Body matter
% --------------------------
\pagenumbering{arabic} % arabic page numbering
\setcounter{page}{1} % set page counter
\clearpairofpagestyles % Reset header and footer style
\pagestyle{scrheadings}
\ohead{\leftmark}
\ofoot[\pagemark]{\pagemark}
\automark[chapter]{chapter}
\input{content/chapter-1-introduction}
\input{content/chapter-2-review}
\input{content/chapter-3-application}
\input{content/chapter-4-method}
\input{content/chapter-5-result}
\input{content/chapter-6-conclusion}
% --------------------------
% Back matter
% --------------------------
%
% \cite{Jurgens:2000,Jurgens:1995,Miede:2011,Kohm:2011,Apple:keynote:2010,Apple:numbers:2010,Apple:pages:2010}
% \cite{WEB:GNU:GPL:2010,WEB:Miede:2011}
{%
\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\biblabelsep}{0pt}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\printbibliography[nottype=online]
\newrefcontext[labelprefix={@}]
\printbibliography[heading=subbibliography,title={Webpages},type=online]
}
% \clearpage
% \listoffigures
% \clearpage
% \listoftables
% \clearpage
% \lstlistoflistings
% \clearpage
\appendix
% \clearpage
% \input{content/chapter-appendix}
% \clearpage
% \input{content/colophon}
% \clearpage
% \input{content/declaration}
\newpage
\mbox{}
% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}