
가능하면 @misc 유형의 턱받이 항목의 제목이 각주에서 강조되지 않도록 해야 합니다. 를 사용하여 참고문헌을 인쇄할 때 제대로 인쇄할 수 있었습니다 \printbibliography
. 를 사용하여 각주 스타일을 사용하고 있습니다 \autocite{}
.
여기 내 서문이 있습니다
\documentclass[12pt, a4paper]{article}
% PACKAGES ----------------------------
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage[left=2.54cm,
right=2.54cm,
top=3.17cm,
bottom=3.17cm]{geometry}
\usepackage[notes, short, backend=biber] {biblatex-chicago}% notes allows for footnote citation
\bibliography{RR1.bib}
\DeclareFieldFormat[misc]{title}{#1}
\ExecuteBibliographyOptions{%
pagetracker=true, autocite=footnote, abbreviate=true, alldates=comp,
citetracker=true, ibidtracker=constrict, usetranslator=true,
usenamec=true, loccittracker=constrict, dateabbrev=false,
maxbibnames=10, minbibnames=7, sorting=cms, sortcase=false}
\usepackage{url}
내 턱받이 항목은 다음과 같이 RR1.bib에 있습니다.
@misc{4.2.2,
author = {},
title = {Arch of Constantine, Inscription},
}
왜 각주가 여전히 이탤릭체로 되어 있는지는 모르겠지만, 인용 부분은 \printbibliography
괜찮습니다. 실제로 어떻게 작동하는지 잘 모르겠습니다 \DeclareFieldFormat
.
저는 TeXStudio, Miktex, Windows를 사용하고 있습니다. 모든 패키지가 업데이트되었습니다.
답변1
인용의 제목 형식은 때때로 에 의해 제어되므로 citetitle
해당 형식도 재정의할 수 있습니다.
\documentclass[12pt, a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[notes, short, backend=biber] {biblatex-chicago}
\DeclareFieldFormat[misc]{title}{#1}
\DeclareFieldFormat[misc]{citetitle}{#1}
\ExecuteBibliographyOptions{%
pagetracker=true, autocite=footnote, abbreviate=true, alldates=comp,
citetracker=true, ibidtracker=constrict, usetranslator=true,
usenamec=true, loccittracker=constrict, dateabbrev=false,
maxbibnames=10, minbibnames=7, sorting=cms, sortcase=false}
\begin{filecontents}{\jobname.bib}
@misc{4.2.2,
title = {Arch of Constantine, Inscription},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem\autocite{4.2.2}
ipsum\autocite{4.2.2}
\printbibliography
\end{document}