我希望尽量减少反向引用,即我希望
AN 其他。2001 年。一切突破之母.世界 3:141-592。1.
代替
AN 其他。2001 年。一切突破之母. 世界 3:141-592。(第 1 页引用。)
原因是重复“引用”似乎没有必要(可以解释一次),并且在长参考书目中,它可以添加不少短行(在我的情况下,它增加了近半页)。
以下 MWE 改编自这个答案。
\documentclass{article}
\usepackage[backref=true]{biblatex-chicago}
\DefineBibliographyStrings{english}{%
backrefpage = {},% originally "cited on page"
backrefpages = {},% originally "cited on pages"
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Some text \autocite{A01,B02}.
\clearpage
Some more text \autocite{A01}.
\printbibliography
\end{document}
它生成的参考书目如下所示:
我怎样才能 (a) 让括号消失以及 (b) 删除第一个页码引用之前的空格?
答案1
您可以修改 bibmacro pageref
。原始定义可以在biblatex.def
(v3.19 中第 2949-2956 行)。
将 bibstring 设置为空字符串通常不会产生令人满意的输出,因为样式通常假设 bibstring 产生的输出会出现虚假的空格或标点符号。
\documentclass{article}
\usepackage[backref=true]{biblatex-chicago}
\renewbibmacro*{pageref}{%
\iflistundef{pageref}
{}
{\printlist[pageref][-\value{listtotal}]{pageref}}}
\addbibresource{biblatex-examples.bib}
\begin{document}
Some text \autocite{sigfridsson,worman}.
\clearpage
Some more text \autocite{sigfridsson}.
\printbibliography
\end{document}