-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowcase-report.tex
76 lines (50 loc) · 1.4 KB
/
showcase-report.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
%% Hauptdatei
\documentclass[font=minion,BCOR=4mm,english,%
% draft,% % activate for full draft features
% lightdraft,% % activate for watermarks
]{ktxreprt}
% Packages for this document.
\usepackage{blindtext}
\usepackage{layout}
% S E T D O C U M E N T P R O P E R T I E S
% ==========================================================
\author{Knut Zoch}
\title{LaTeX Style Sample}
% Search for figures in the following path.
\graphicspath{{figures/}}
% Add bibliography files to the document.
\bibliography{aux/bibliography}
% User defined commands and abbreviations.
\input{aux/abbreviations}
% B E G I N N I N G O F D O C U M E N T
% ==========================================================
\begin{document}
% \pagestyle{empty}
\frontmatter
\maketitle
\thispagestyle{empty}
\cleardoublepage
\tableofcontents
\thispagestyle{plain}
\cleardoublepage
\mainmatter
% First and second section with pure text and levels (headings, lists)
\include{tex/levels}
% Third section with some maths
\include{tex/maths}
% Fourth section with different font examples
\include{tex/font}
% Fifth section with miscellaneous contents
\include{tex/misc}
% Print the bibliography
\clearpage
\printbibliography
% Start appendices
\clearpage
\appendix
\include{tex/layout}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: