脚注,遵循引用编号,仅出现在参考文献列表中(与参考文献一起)

脚注,遵循引用编号,仅出现在参考文献列表中(与参考文献一起)

我希望脚注只出现在参考文献列表中,并与引文具有相同的枚举:换句话说,我想混合参考文献和脚注。脚注不应出现在使用它们的页面底部,而应仅出现在参考文献列表中。

我附上了我正在阅读的一篇论文的截图,其中这样做似乎是一种礼仪(《物理评论 B》)。比较参考文献 18 和 19:18 是正式的参考文献,而 19 只是脚注文本。

我可以以某种方式模仿这一点吗?

参考文献中的脚注

答案1

我认为诀窍在于,第一,使用endnotes;第二,重新定义\footnote以生成尾注;第三,使用verbose引用样式biblatex而不是打印单独的参考文献列表。

例如:

\documentclass{article}
\usepackage{endnotes}
\let\footnote\endnote
\usepackage[citestyle=verbose,backend=biber]{biblatex}
    \bibliography{biblatex-examples}
\begin{document}

Here is some text with a footnote\footnote{First footnote.} and a reference to somebody\autocite{westfahl:space}. Here is another footnote\footnote{Second footnote.} and another citation\autocite{matuz:doody,}.

\theendnotes

\end{document}

生成:

带参考文献的尾注

相关内容