summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/iodhbwm/doc/examples/how-to-use-iodhbwm/iodhbwm-simple-starter.tex
blob: 82cdcc1b5a5ea05c847aae47de8a3b3c707efe0e (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
% ---------------------------------------------------
% Date:       08.10.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
    language = ngerman,     % Set main document language
    debug                   % Provide \lipsum, \blindtext
]{iodhbwm}
\usepackage[T1]{fontenc}
%\usepackage[utf8]{inputenc}    % UTF-8 is default at the latest release

% ---------------------------------------------------
% --- --- --- --- - Necessary setup - --- --- --- ---
% ---------------------------------------------------
\dhbwsetup{%
    author              = Max Mustermann,
    thesis type         = SA,
    thesis title        = Einfaches Einführungsbeispiel,
    student id          = 12345,
    location            = Musterstadt,
    institute           = Musterwerke GmbH,
    course/id           = Txxxx,
    supervisor          = Felix Faltin,
    processing period   = {01.01.17 -- 31.01.17}
}

\begin{document}
    % ---------------------------------------------------
    % --- --- - Print titlepage, ToC, LoF and LoT --- ---
    % ---------------------------------------------------
    \dhbwtitlepage      % Print titlepage
    \tableofcontents    % Print ToC
    \listoffigures      % Print LoF
    \listoftables       % Print LoT
    
    % ---------------------------------------------------
    % --- --- --- --- Begin actual content -- --- --- ---
    % ---------------------------------------------------
    \chapter{Test Kapitel}\label{chap:test-chap}
        \section{Test Section}\label{sec:test-sec}
            \blindtext
            
            Verweis auf \Cref{chap:test-chap} und auf mich selbst \Cref{sec:test-sec}~\cite{glashow}.
            
            \lipsum
    
    % ---------------------------------------------------
    % --- --- --- --- End actual content --- --- --- ---
    % ---------------------------------------------------
    % If you want to use bibliography you have to include
    % the required package 'biblatex' manually. The
    % following commands are also needed
    %   \addbibresource{bibliographic resource}
    %   \printbibliography
    % Have a look at the advanced and recommended
    % examples to overcome this issue!
    % ---------------------------------------------------
\end{document}