-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
53 lines (41 loc) · 1.39 KB
/
main.tex
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
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage{csquotes}
% BibTex
\usepackage[%
bibencoding=utf8,
bibstyle=tmp/main,
firstinits=true,
labelnumber=true,
]{biblatex}
\newcommand\lit[1]{Citation \cite{#1}}
\newcommand\litsup[1]{Citation \supercite{#1}}
\bibliography{../literature}
\begin{document}
\tableofcontents
\newpage
\section{Introduction}
This is a short example on how to use the bibstyler-Template. \\
Now we referer to the following literature:
\begin{itemize}
\item{\bf Trends in Theoretical Computer Science \lit{boerger_trends83}}
\item{\bf Science of Computer Programming \lit{SCP}}
\item{\bf An Explanation of Splaying \lit{Subramanian:1994:ES}}
\item{\bf Computer Science: The Nature of a Good and Accreditable Computer Science Program \lit{Martin96}}
\end{itemize}
And the same example with $\backslash$litsup:
\begin{itemize}
\item{\bf Trends in Theoretical Computer Science \litsup{boerger_trends83}}
\item{\bf Science of Computer Programming \litsup{SCP}}
\item{\bf An Explanation of Splaying \litsup{Subramanian:1994:ES}}
\item{\bf Computer Science: The Nature of a Good and Accreditable Computer Science Program \litsup{Martin96}}
\end{itemize}
\newpage
% Literaturverzeichnis
\newpage
\phantomsection
\addcontentsline{toc}{section}{Literature}
\printbibliography[maxnames=99]
\end{document}