Coloque "ibid" em maiúscula. produzido por \runcite biblatex-chicago

Coloque "ibid" em maiúscula. produzido por \runcite biblatex-chicago

"eu ia." não é devidamente capitalizado quando produzido com \runcite de biblatex-chicago.

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
}

Responder1

\newrobustcmd*{\Runcite}{\bibsentence\runcite}

Explicação

A biblatexdocumentação \bibsentencediz: "Este comando marca o início de uma frase. Uma string de localização imediatamente após este comando será maiúscula e o rastreador de pontuação será redefinido, ou seja, este comando oculta todos os sinais de pontuação anteriores do rastreador de pontuação e impõe capitalização."

biblatexdefine \Citecom

\newrobustcmd*{\Cite}{\bibsentence\cite}

Uma versão em maiúscula \runcitepode ser definida de forma semelhante.

informação relacionada