
“ID。”使用 biblatex-chicago 的 \runcite 產生時,大小寫不正確。
微量元素
\documentclass{article}
\usepackage[notes, backend=biber, useibid=true]{biblatex-chicago}
\addbibresource{test.bib}
\begin{document}
\runcite{bakke} is the first use of the citation.
Here is a fake quote, and what happens when I use runcite.
\runcite[306]{bakke}.
% Produces \textit{id.}\ at 306.
Here is a fake quote, and this is what I actually want.
\textit{Id.}\ at 306.
\end{document}
@jurisdiction{bakke,
journaltitle = {United States Supreme Court Reports},
title = {{Regents of the University of California \emph{v.}\ Bakke}}, % I am aware that this is not the "correct" way to do the italics here, but it is the easiest and isn't the focus of this MWE.
shorttitle = {Bakke},
shortjournal = {U.S\adddot},
date = 1978,
volume = 438,
pages = 265
}
答案1
\newrobustcmd*{\Runcite}{\bibsentence\runcite}
解釋
文件biblatex
中\bibsentence
說:「該命令標記句子的開頭。緊接著該命令之後的本地化字串將被大寫,並且標點符號追蹤器將被重置,即該命令隱藏標點符號追蹤器中所有前面的標點符號並強制大寫。
biblatex
定義\Cite
為
\newrobustcmd*{\Cite}{\bibsentence\cite}
的大寫版本\runcite
可以類似地定義。