
イタリック体にしたいホモサピエンス私の文末脚注の引用文献に、Unitalicized は正常に動作します。\textit{} を追加するとコンパイルが失敗します。
動作しない最小限の 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},
}
参照タイトルフィールドで \textit{} が使用されていない場合は、これは正常に機能します。
\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}
答え1
を使用することをお勧めしますenotez
が、問題は同じです。回避策はあります。
\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}
しかし、endnotes
ある程度は機能します。
\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}
しかし、私はいつも
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) paulend
(biblatex) and rerun LaTeX afterwards.