我有以下文件:
\documentclass[openany]{memoir}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{c1, author={Author}, title={Article}}
@misc{c2, author={Writer}, title={Book}}
\end{filecontents}
\usepackage[backend=biber,style=verbose-note,citetracker=true,pageref=true]{biblatex}
\makepagenote
\let\footnote\pagenote
\addbibresource{\jobname.bib}
\begin{document}
\chapter{One}
Filler text.\footcite{c1}
\chapter{Two}
Filler text.\footcite{c2}
More text.\footcite{c1}
\backmatter
\printpagenotes
\end{document}
本书没有单独的参考书目;所有参考资料都印在尾注中。当引用出现多次时,我可以使用选项citetracker
来参考尾注,其中可以找到第一个完整的引用。
尾注输出如下:
Notes
Chapter 1 One
1. Author. Article.
Chapter 2 Two
1. Writer. Book.
2. Author, see n. 1.
但这很容易让人困惑,因为这一页上有两个 n. 1 注释!读者必须意识到他要找的 n. 1 在另一章中。
通过该pageref
选项,还可以打印尾注的页码,这有助于处理较大的文档,但 n. 2 引用的页面上可能有多个 n. 1。
有没有办法打印章节号来代替页码(或除了页码之外)?也就是说,第 2 章应该看起来像
2. Author, see ch. 1, n. 1.
或者
2. Author, see ch. 1, n. 1, p 1.