미주 제목 내의 기울임꼴 텍스트(속/종)로 인해 컴파일이 실패합니다.

미주 제목 내의 기울임꼴 텍스트(속/종)로 인해 컴파일이 실패합니다.

이탤릭체로 하고 싶습니다호모 사피엔스내 미주에 인용된 참고 자료에서. 단위화는 잘 작동합니다. \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.

여기에 이미지 설명을 입력하세요

관련 정보