遇到了一些与该软件包相关的令人费解的行为。使用该选项(这是该软件包的两个常见用例之一)biblatex-chicago
时,命令不会产生任何输出。authordate
citetitle
我尝试阅读软件包文档,但发现没有提及此行为。
我该如何调整我的文档以citetitle
产生有意义的输出?这是预期的行为吗?
梅威瑟:
\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}