从脚注 biblatex 中删除“参见 n. 1”

从脚注 biblatex 中删除“参见 n. 1”

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]

articles (和article类似类)的默认标题是“参考文献”(存储在 中\refname),而reports 和books 的默认标题是“参考书目”(存储在 中\bibname)。

相关内容