平均能量损失

平均能量损失

我正在使用 biblatex-chicago,我想在用冒号分隔的引用中添加页码,例如 Smith (2000: 112)。

有谁知道如何做到这一点?

顺便说一下,使用 biblatex-chicago\textcite{}可以生成类似 Smith (2000) 的内容。

答案1

您可以添加\DeclareDelimFormat{postnotedelim}{\addcolon\space}到您的序言中,然后使用\textcite[postnote]{key}

平均能量损失

\documentclass{article}

\usepackage[authordate]{biblatex-chicago}
\addbibresource{biblatex-examples.bib}

\DeclareDelimFormat{postnotedelim}{\addcolon\space}

\begin{document}
\textcite[112]{bertram}

\printbibliography
\end{document}

MWE 输出

相关内容