我正在尝试使用 biblatex 弄清楚当作者在同一页上重复时如何使用破折号而不是 ibidem \footcite
。以下是我目前所得到的:
\documentclass[fleqn,10pt]{book}
\usepackage{csquotes}
\usepackage[style=verbose-trad2,backref=true]{biblatex}
\bibliography{mem}
\begin{document}
\section{Text}
some text\footcite[58]{report} some text\footcite[62]{report}
\end{document}
如下mem.bib
:
@book{report,
author = {Letter, Alphanumeric},
title = {On the importance of nice references},
institution = {typographic University},
year = {2011}}
我对第二次调用的 Ibid. 不满意。我怎样才能用破折号代替它?
谢谢
答案1
这实际上是特定于语言的。假设您使用babel
带有english
选项的包或根本不使用语言包(即,使用 biblatex 假设english
作为后备),请将以下内容添加到您的序言中:
\DefineBibliographyStrings{english}{%
ibidem = {---},
}
编辑:有关详细信息,请参阅 biblatex 文档的第 3.7 和 4.9.2 节。