「ibid.」は大文字で表記します。\runcite biblatex-chicago によって作成されました。

「ibid.」は大文字で表記します。\runcite biblatex-chicago によって作成されました。

「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同様に定義できます。

関連情報