blob: 8177fa141365ac6e488e7214a5d62aa21a6f4367 (
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
|
% vim: set ts=2 sw=2 noet:
% Table of contents
\pdfbookmark[1]{\contentsname}{tableofcontents}
\tableofcontents
\clearpage
% List of figures, tables and listings
\begingroup
\let\clearpage\relax
\let\cleardoublepage\relax
% \automark[section]{chapter}
\renewcommand{\chaptermark}[1]{\markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}}
\renewcommand{\sectionmark}[1]{\markright{\textsc{\thesection}\enspace\spacedlowsmallcaps{#1}}}
\pagestyle{scrheadings}
\pdfbookmark[1]{\listfigurename}{lof}
\listoffigures
\pdfbookmark[1]{\listtablename}{lot}
\listoftables
\pdfbookmark[1]{\lstlistlistingname}{lol}
\lstlistoflistings
\endgroup
|