Заглавные буквы "ibid." произведено \runcite biblatex-chicago

Заглавные буквы "ibid." произведено \runcite biblatex-chicago

«id.» не пишется правильно с заглавной буквы при создании с помощью \runcite из biblatex-chicago.

МВЭ

\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Аналогично может быть определена и версия с заглавной буквы .

Связанный контент