Funny, I feel like I had it going before. I can't seem to figure out what's wrong.
MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[danish]{babel}
\usepackage[notes,backend=biber,isbn=false]{biblatex-chicago}
\usepackage{filecontents}
\usepackage{csquotes}
\begin{filecontents}{jobname.bib}
@Book{test1,
author = {Bar, Foo},
title = {Foo},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
annote = {My annotation}
}
\end{filecontents}
\bibliography{jobname.bib}
\begin{document}
Foo\footcite{test1}
\printbibliography
\nocite{*}
\end{document}
What I want is the "annote" field at the end of the bibliography entry. No idea why it's not working. You can compile with:
latexmk -pdf mwe
If you want to.
Best Answer
The
annotation
field is ignored by the standardbiblatex
stylesbiblatex
documentation, p. 15, §2.2.2 Data Fields.You could use the
addendum
ornote
field insteadbiblatex
documentation, p. 15, §2.2.2 Data Fields.biblatex
documentation, p. 15, §2.2.2 Data Fields.biblatex-chicago
has theannotation
optionbiblatex-chicago
documentation, p. 23, §4.2 Entry Fields.and
biblatex-chicago
documentation, p. 58, §4.4.3 Style Options – Preamble.So in your MWE, all you have to do is to load
biblatex-chicago
with theannotation
optionMWE