blob: 1e9abc1243e9bf24aef8709b855e1de095e1fb49 (
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
|
\documentclass[ngerman]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{csquotes}
\usepackage[
backend=biber,
style=LNI
]{biblatex}
\usepackage{hyperref}
\addbibresource{LNI-examples.bib}
\begin{document}
\chapter{Zitierungen}
Verlinkte Autoren:
\begin{itemize}
\item Vier Autoren: \citeauthor{ABCD02} \cite{ABCD02}
\item Drei Autoren: \citeauthor{ABC01} \cite{ABC01}
\item Zwei Autoren: \citeauthor{AB00} \cite{AB00} und \citeauthor{vdAW2013} \cite{vdAW2013}.
\item Ein Autor: \citeauthor{Ez10} \cite{Ez10}, \citeauthor{Go10} \cite{Go10} und \citeauthor{latexcookbook} \cite{latexcookbook}.
\item Am Satzanfang: \Citeauthor{Go10}.
\end{itemize}
\nocite{*}
\printbibliography
\end{document}
|