Kapitel/Chapter 4

"Bibliografien mit LaTeX"/"Bibliografies with LaTeX"

4.3.2

Spezielle Autorennamen

%! HV 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}

4.4.1

Verweise -- \footcite

%! HV lualatex
%! HV biber
%! HV lualatex
%! HV lualatex

\documentclass{article}
\usepackage[style=authoryear-icomp,ibidtracker,idemtracker,pagetracker]{biblatex}
\usepackage{libertinus}
\begin{filecontents}[force,noheader]{\jobname.bib}
@ARTICLE{eisenstein2011,
	author = {{Eisenstein}, D.~J. and {Weinberg}, D.~H. and {Agol}, E. and
		{Aihara}, H. and {Allende Prieto}, C. and {Anderson}, S.~F. and
		{Arns}, J.~A. and {Aubourg}, {\'E}. and {Bailey}, S. and
		{Balbinot}, E. and et al.},
	title = "{SDSS-III: Massive Spectroscopic Surveys of the Distant Universe,
		the Milky Way, and Extra-Solar Planetary Systems}",
	journal = {Astrophysical Journal},
	archivePrefix = "arXiv",
	eprint = {1101.1529},
	primaryClass = "astro-ph.IM",
	keywords = {cosmology: observations, Galaxy: evolution, planets and satellites: detection, surveys},
	year = 2011,
	month = sep,
	volume = 142,
	eid = {72},
	pages = {72},
	doi = {10.1088/0004-6256/142/3/72},
	adsurl = {http://adsabs.harvard.edu/abs/2011AJ....142...72E},
	adsnote = {Provided by the SAO/NASA Astrophysics Data System}
	}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
Foo\footfullcite{eisenstein2011}
foo\footcite{eisenstein2011}
bar\footcite{eisenstein2011}

\fullcite{eisenstein2011}
\printbibliography
\end{document}

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