
如果可能的話,我需要在腳註中不強調 @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}