
„id.“ wird bei der Erstellung mit \runcite von biblatex-chicago nicht richtig großgeschrieben.
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
}
Antwort1
\newrobustcmd*{\Runcite}{\bibsentence\runcite}
Erläuterung
In der biblatex
Dokumentation \bibsentence
heißt es: „Dieser Befehl markiert den Anfang eines Satzes. Eine Lokalisierungszeichenfolge unmittelbar nach diesem Befehl wird groß geschrieben und der Interpunktionstracker wird zurückgesetzt, d. h. dieser Befehl verbirgt alle vorhergehenden Satzzeichen vor dem Interpunktionstracker und erzwingt die Großschreibung.“
biblatex
definiert \Cite
mit
\newrobustcmd*{\Cite}{\bibsentence\cite}
Eine großgeschriebene Version von \runcite
kann ähnlich definiert sein.