Skip to content

Instantly share code, notes, and snippets.

@alexreg
Created September 5, 2021 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexreg/1625655ac5ddbf33558045aec2f6bbe2 to your computer and use it in GitHub Desktop.
Save alexreg/1625655ac5ddbf33558045aec2f6bbe2 to your computer and use it in GitHub Desktop.
\begin{filecontents*}{\jobname.bib}
@book{author00,
title = {{A Title}},
publisher = {Alpha},
year = {2008},
editor = {Author, A},
address = {London}
}
@book{buthor00,
title = {{B Title}},
publisher = {Bravo},
year = {1990},
author = {Buthor, B},
address = {New York}
}
\end{filecontents*}
\documentclass{article}
\usepackage[style = authoryear, backend = biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\citeauthor{buthor00} has written \autocite{buthor00}.
\nocite{*}
\printbibliography
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment