%EB%A1%9C%20%EC%9D%B8%ED%95%B4%20%EC%BB%B4%ED%8C%8C%EC%9D%BC%EC%9D%B4%20%EC%8B%A4%ED%8C%A8%ED%95%A9%EB%8B%88%EB%8B%A4..png)
이탤릭체로 하고 싶습니다호모 사피엔스내 미주에 인용된 참고 자료에서. 단위화는 잘 작동합니다. \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.