summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/ksp-thesis/demo/full/example.tex
blob: b467311707b02a28e2942144bb0ad3b551abb41c (plain)
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
%%% ===========================================================================
%%% DOCUMENT PREAMBLE
%%% ===========================================================================
\RequirePackage[l2tabu,orthodox]{nag} 	% issue warnings for deprecated code

%%% ClassicThesis options
%%% ---------------------------------------------------------------------------
\PassOptionsToPackage{%
%%% --- Allgemeines -----------------------------------------------------------
	%drafting,			% Angabe von Datum und Versionsnummer
%%% --- Dokumentenstruktur ----------------------------------------------------
	parts,			% Dokument ist in Teile untergliedert
	%nochapters,		% Dokument hat keine Kapitel
	%linedheaders,		% Abtrennung der Kopfzeile
%%% --- Typographie -----------------------------------------------------------
	%eulerchapternumbers,	% 'Euler Math'-Schriftart für Kapitelnummern
	%beramono,			% 'Bera Mono' als Typewriter-Schriftart
	%eulermath,			% 'Euler Math'-Schriftart für Mathematik-Modus
	pdfspacing,			% makes use of pdftex’ letter spacing 
					%  capabilities via the microtype package.
	%minionprospacing,	% uses the internal textssc command of
					%  the MinionPro package for letter spacing
%%% --- Inhaltsverzeichnis ----------------------------------------------------
	%tocaligned,		% aligns the whole table of contents on the left
	%dottedtoc,			% sets pagenumbers flushed right
	%manychapters,		% Layout-Korrektur bei >9 Kapiteln
%%% --- Gleitobjekte ----------------------------------------------------------
	%listings,			% loads the listings package (if not already 
					%  done) and configures the List of Listings
	floatperchapter,		% activates numbering per chapter for all
					% floats such as figures, tables, and listings
	%subfig,			% is passed to the tocloft package to enable
					%  compatibility with the subfig packag
	%subfigure,			% is passed to the tocloft package to enable
					%  compatibility with the subfigure packag
}{classicthesis}

%%% Document class and generic options
%%% ===========================================================================
\documentclass[%
%%% <ksp-thesis> options
%%% ---------------------------------------------------------------------------
   %layout=draft,                % set page layout according to document status (draft/official/report/17x24)
   %%% table of contents options
   %dottedtoc=false,             % use dots as leader between the section, subsection etc. title and the page number?
   %dottedtocparts,              % use dots as leader between the part title and the page number?
   %dottedtocchapters,           % use dots as leader between the chapter title and the page number?
   %tocpartentriesbold=false,    % use bold font instead of caps for part entries?
   %tocchapterentriesbold=false, % use bold font instead of caps for chapter entries?
   %tocentriesbold=false,        % use bold font instead of caps for part and chapter entries?
   %%% typesetting options
   %raggedlists=false,           % set lists (itemize, enumerate, description) ragged right?
%%% <scrbook> options
%%% ---------------------------------------------------------------------------
	%numbers=endperiod,
   listof=totoc,  % add list of figures, tables, etc. to table of contents
%%% generic options
%%% ---------------------------------------------------------------------------
	ngerman,english,  % document language(s)
]{ksp-thesis}

%%% Load packages
%%% ===========================================================================

%%% Packages that should be loaded at the beginning
%%% ---------------------------------------------------------------------------
\usepackage{amsmath}    % various math typesetting improvements, load before <pst-pdf>
\usepackage{relsize}    % relative text sizes

%%% Language and encoding
%%% ---------------------------------------------------------------------------
\usepackage[utf8]{inputenc}   % file encoding
\usepackage[T1]{fontenc}      % font encoding
\usepackage{babel}            % spelling, hyphenation, etc.

%%% Typesetting
%%% ---------------------------------------------------------------------------
\usepackage{isodate}    % date formatting

%%% Development tools
%%% ---------------------------------------------------------------------------
\usepackage{blindtext}  % blindtext macros
\blindmathtrue

%%% Paper meta data
%%% ===========================================================================
\input{content/docinfo}

%%% Document layout
%%% ===========================================================================
\input{preamble/layout}

%%% ===========================================================================
%%% DOCUMENT CONTENT
%%% ===========================================================================

\begin{document}

\input{content/frontmatter}
\input{content/mainmatter}
\input{content/appendix}

\end{document}