I tried looking at the documentation for this, but it gave me nothing but grey hairs.
MWE (inspired by this):
\documentclass{memoir}
\begin{filecontents}{MWE.bib}
@book{key,
author = {Super, Max},
title = {The Title of the Book},
publisher = {Foo Books},
year = {2016},
note = {my note},
}
\end{filecontents}
\usepackage[backend=biber]{biblatex-chicago}
\addbibresource{MWE.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
This gives me:
What I'm looking for is:
\ldots{} help?


notefield is present. – moewe Aug 04 '16 at 06:32\newlineto a field format will always have this problem: the format is only executed if the field is actually present. Plus, you can't know which field is the first non-empty one after thetitleblock. – moewe Aug 04 '16 at 06:37note = {~},to the bibliography. – Kristian Nordestgaard Aug 04 '16 at 07:49