summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/iodhbwm/doc/examples/bibliography/iodhbwm-biblatex-rename-heading.tex
blob: bea0468d3d398ed031b6fca0c1f73f50c11383ae (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
% ---------------------------------------------------
% Date:       12.12.2018
% Version:    v0.1
% Autor:      Felix Faltin <ffaltin91[at]gmail.com>
% Repository: https://github.com/faltfe/iodhbwm
% ---------------------------------------------------
% --- --- --- --- -- Class options -- --- --- --- ---
% ---------------------------------------------------
\documentclass[
    add-bibliography,                 % Include bibliography (needs biber run)
    bib-file = biblatex-examples.bib, % Set bibliography file
    language = ngerman,               % Set main language
    debug                             % Provide \lipsum, \blindtext
]{iodhbwm}
\usepackage[T1]{fontenc}

% Rename bibliography heading depending
% on selected language
\DefineBibliographyStrings{ngerman}{%
    bibliography = {Literaturverzeichnis},
    references = {Literaturverzeichnis},
}

% ---------------------------------------------------
% --- --- --- --- Begin actual content -- --- --- ---
% ---------------------------------------------------
\begin{document}
    \chapter{Einfaches Zitat}
        \blindtext \cite{bertram}

\end{document}