Encountered some puzzling behavior with the biblatex-chicago package. When using the authordate option, which is one of two common use-cases of this package, the citetitle command produces no output.
I tried reading through the package documentation and found no mention of this behavior.
How can I tweak my document so that citetitle produces meaningful output? And is this the intended behavior?
MWE:
\documentclass[preview]{standalone}
\usepackage[authordate]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{my.bib}
@article{my_article,
title={Title},
author={Smithers, Mister},
year = {1992},
}
\end{filecontents}
\addbibresource{my.bib}
\begin{document}
This results in a blank: \citetitle{my_article}
\printbibliography
\end{document}
bookinstead ofarticle, it works. If you usebiblatexinstead ofbiblatex-chicago, it works. I think it's a bug ofbiblatex-chicagowitharticle. – CarLaTeX Dec 18 '23 at 23:09.bblcontains\field{labeltitlesource}{author}rather than\field{labeltitlesource}{title}whenbiblatex-chicagois used and this is the problem. If the line in the.bblis corrected manually, the document compiles as expected. This should be reported tobiblatex-chicago's author as a bug. – cfr Dec 18 '23 at 23:29@article. – cfr Dec 18 '23 at 23:32chicago-dates-common.cbxwhich likely explains why this happens for articles but not books. I don't entirely understand it but it concludes thatwe can't simply print the labeltitle for these entry types. – cfr Dec 18 '23 at 23:42\DeclareLabeltitle[article,review,suppperiodical]{% \field{shorttitle} \field{title} \field{shortauthor} \field{author} \field{shorteditor} \field{namea} \field{editor} \field{nameb} \field{translator} \field{namec} \field{shortjournal} \field{journaltitle}}%to your preamble it 'solves' the problem, but this will presumably break the formatting of authorless articles mentioned in the comments. If you don't have authorless articles, reviews or supplementary-journal-items, you could try it, but you'd need to triple check the output. – cfr Dec 18 '23 at 23:48