Biblatex 对我的脚注的格式化如下:
我想删除“参见 n. 1”或“参见 n. 30”。我正在使用历史学家包 MWE:
documentclass{article}
\usepackage[margin=3cm]{geometry}
\usepackage{setspace}\doublespacing
\usepackage[utf8]{inputenc}
\usepackage [american]{babel}
\usepackage [english=american] {csquotes}
\usepackage[backend=bibtex,style=historian,sorting=nty,
autocite=footnote, babel=hyphen,
mincrossrefs=1,usetranslator=true,printseries]{biblatex}
\bibliography{bib.bib}
\setlength\bibitemsep{2\itemsep}
\setlength\bibhang{30pt}
\renewcommand{\cite}{\footcite}
\usepackage{filecontents}
\begin{filecontents}{bib.bib}
@book{service,
keywords = {secondary},
title = {Trotsky: A Biography},
author = {Robert Service},
}
@book{pipes,
keywords = {secondary},
title = {A Concise History of the Russian Revolution},
author = {Richard Pipes},
}
\end{filecontents}
\begin{document}
First time cited.\cite[42]{service} First time cited.\cite[24]{pipes}
Second time cited.\cite[42]{service} Second time cited.\cite[24]{pipes}
\printbibliography
\end{document}
PS 这与此无关,但我还想将参考书目的标题从参考文献更改为参考书目。
答案1
biblatex-historian
有一个选项可以抑制“参见注释”字符串:
printnoterefs=false
请参阅第 5 页这biblatex-historian
。
title
可以\printbibliography
更改标题的选项
\printbibliography[title=\bibname]
article
s (和article
类似类)的默认标题是“参考文献”(存储在 中\refname
),而report
s 和book
s 的默认标题是“参考书目”(存储在 中\bibname
)。