Kapitel/Chapter 4

"Bibliografien mit LaTeX"/"Bibliografies with LaTeX"

4.3.2

Spezielle Autorennamen

% !TEX lualatex
\documentclass{article}
\begin{filecontents}[force,noheader]{\jobname.bib}
@book{heerbrand1569,
  keywords     = {prim},
  author       = {Jakob {Heerbrand \parentext{Präses}} and Erhard {Schweickhard \parentext{Respondent}}},
  title        = {Disputatio contra purgatorium},
  location     = {Tübingen},
  year         = {1569},
}
@book{heerbrand1569-2,
  keywords     = {prim},
  author       = {Jakob {Heerbrand \parentext{Präses}} and Erhard {Schweickhard \parentext{Respondent}}},
  title        = {Disputatio contra purgatorium},
  location     = {Tübingen},
  year         = {1569},
  shortauthor  = {Jakob Heerbrand and Erhard Schweickbard}
}
@book{heerbrand1569-3,
  keywords     = {prim},
  author       = {Heerbrand, Jakob (Präses) and Schweickhard, (Respondent), Erhard},
  title        = {Disputatio contra purgatorium},
  location     = {Tübingen},
  year         = {1569},
}
@book{heerbrand1569-4,
  keywords     = {prim},
  author       = {Heerbrand, {Jakob (Präses)} and Schweickhard, {Erhard (Respondent)}},
  title        = {Disputatio contra purgatorium},
  location     = {Tübingen},
  year         = {1569},
}
\end{filecontents}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{fontspec}%% XeLaTeX oder LuaLaTeX
\usepackage[ngerman]{babel}
\begin{document}
Es kommt ein Test~\parencite{heerbrand1569}
\parencite{heerbrand1569-2}
\parencite{heerbrand1569-3}
\parencite{heerbrand1569-4}
\printbibliography
\end{document}


Zurück zur Hauptseite/Back to main page
Copyright $Id: chapter04.html 28 2022-12-31 07:33:58Z voss $