blob: 0692f0dfdb6fbf9d49ee114b7a1465836997c802 (
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
|
% ---------------------------------------------------
% Date: 12.11.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 document language
debug % Provide \lipsum, \blindtext
]{iodhbwm}
\usepackage[T1]{fontenc}
%\usepackage[utf8]{inputenc} % UTF-8 is default at the latest release
% ---------------------------------------------------
% --- --- - Change default biblatex options - --- ---
% ---------------------------------------------------
% You can almost change every option with this command. There are
% only some exception like the backend and the style.
% If you want to change the citeystyle have a look at the custom
% cite style example or see the documentation for biblatex/citestyle
% option.
% ---------------------------------------------------
% Change the sorting and supress the DOI output
\ExecuteBibliographyOptions{hyperref=true}
% ---------------------------------------------------
% --- --- --- --- Begin actual content -- --- --- ---
% ---------------------------------------------------
\begin{document}
\blindtext \cite{doody}
% \nocite{*} % Cite every entry from the passed file
\printbibliography
% ---------------------------------------------------
\end{document}
|