
"ID." biblatex-chicago에서 \runcite를 사용하여 생성할 때 대문자가 올바르게 사용되지 않습니다.
MWE
\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
유사하게 정의될 수 있습니다.