%20im%20Endnotentitel%20f%C3%BChrt%20zum%20Kompilierungsfehler.png)
Ich möchte kursiv schreibenHomo sapiensin einer zitierten Referenz in meinen Endnoten. Unitalisiert funktioniert einwandfrei. Fügen Sie \textit{} hinzu und die Kompilierung schlägt fehl.
Minimal nicht funktionierender Test.bib:
@online{sib_swiss_institute_of_bioinformatics_q8wz42_nodate,
title = {Q8WZ42 ({TITIN}\_HUMAN) \textit{Homo sapiens} (Human)},
url = {https://swissmodel.expasy.org/repository/uniprot/Q8WZ42},
author = {{SIB Swiss Institute of Bioinformatics}},
urldate = {2024-01-04},
}
Dies funktioniert einwandfrei, wenn \textit{} nicht im Referenztitelfeld verwendet wird:
\documentclass[a4paper]{article}
\usepackage[notes,notetype=endonly,isbn=false,doi=false,url=false,backend=biber]{biblatex-chicago}
\usepackage{endnotes}
\addbibresource{test.bib}
\begin{document}
Lorem ipsum dolor\autocite{sib_swiss_institute_of_bioinformatics_q8wz42_nodate}
\theendnotes
\end{document}
Antwort1
Ich schlage vor, zu verwenden enotez
, aber das Problem ist das gleiche; es gibt einen Workaround.
\begin{filecontents*}[overwrite]{\jobname.bib}
@online{sib_swiss_institute_of_bioinformatics_q8wz42_nodate,
title = {Q8WZ42 ({TITIN}\_HUMAN) \textit{Homo sapiens} (Human)},
url = {https://swissmodel.expasy.org/repository/uniprot/Q8WZ42},
author = {{SIB Swiss Institute of Bioinformatics}},
urldate = {2024-01-04},
}
\end{filecontents*}
\documentclass[a4paper]{article}
\usepackage[
notes,
notetype=endonly,
isbn=false,
doi=false,
url=false,
backend=biber
]{biblatex-chicago}
\usepackage{enotez}
\addbibresource{\jobname.bib}
\NewCommandCopy{\latextextit}{\textit}
\RenewDocumentCommand{\textit}{m}{\latextextit{#1}}
\begin{document}
Lorem ipsum dolor\autocite{sib_swiss_institute_of_bioinformatics_q8wz42_nodate}
\printendnotes
\end{document}
Funktioniert aber auch endnotes
irgendwie.
\begin{filecontents*}[overwrite]{\jobname.bib}
@online{sib_swiss_institute_of_bioinformatics_q8wz42_nodate,
title = {Q8WZ42 ({TITIN}\_HUMAN) \textit{Homo sapiens} (Human)},
url = {https://swissmodel.expasy.org/repository/uniprot/Q8WZ42},
author = {{SIB Swiss Institute of Bioinformatics}},
urldate = {2024-01-04},
}
\end{filecontents*}
\documentclass[a4paper]{article}
\usepackage[
notes,
notetype=endonly,
isbn=false,
doi=false,
url=false,
backend=biber
]{biblatex-chicago}
\usepackage{endnotes}
\addbibresource{\jobname.bib}
\NewCommandCopy{\latextextit}{\textit}
\RenewDocumentCommand{\textit}{m}{\latextextit{#1}}
\begin{document}
Lorem ipsum dolor\autocite{sib_swiss_institute_of_bioinformatics_q8wz42_nodate}
\theendnotes
\end{document}
Ich bekomme jedoch immer
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) paulend
(biblatex) and rerun LaTeX afterwards.