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
|
% ---------------------------------------------------
% Date: 12.12.2018
% Version: v0.1
% Autor: Felix Faltin <ffaltin91[at]gmail.com>
% Repository: https://github.com/faltfe/iodhbwm
% ---------------------------------------------------
% --- --- --- --- -- Class options -- --- --- --- ---
% ---------------------------------------------------
\documentclass[
load-dhbw-templates, % Allow \dhbw* commands
add-tocs-to-toc, % Add LoF, LoT, etc. to ToC
debug, % Provide \lipsum, \blindtext
language = ngerman % Set main document language
]{iodhbwm}
\usepackage[T1]{fontenc}
% ---------------------------------------------------
% --- --- --- --- - Necessary setup - --- --- --- ---
% ---------------------------------------------------
\dhbwsetup{%
author = Felix Faltin,
thesis type = SA,
thesis title = Einbinden eines Anhangs,
student id = 12345,
location = Musterstadt,
institute = Musterwerke GmbH,
course/id = Txxxx,
supervisor = Pikachu und Enton,
processing period = 27.07.2018
}
% Rename appendix name
\renewcommand{\listappendixname}{Anhangsverzeichnis}
% ---------------------------------------------------
% --- --- --- --- Begin actual content -- --- --- ---
% ---------------------------------------------------
% Compare this example with the file
% `iodhbwm-appendix-auto.tex` and check out the
% benefits using the option `auto-intro-pages`.
% ---------------------------------------------------
\begin{document}
\dhbwtitlepage
\dhbwdeclaration
\tableofcontents
\listoffigures
\listoftables
\listofappendices
\Blinddocument
% ---------------------------------------------------
% --- --- --- --- -- Begin appendix - --- --- --- ---
% ---------------------------------------------------
\appendix
\chapter{Hello world}
\blindtext
\end{document}
|