引用作为脚注吗?

引用作为脚注吗?

有没有一种简单的方法可以让引用以脚注的形式出现,而不是以文章末尾的章节形式出现?最好使用 bibtex。

答案1

作为基于 BibTeX 的解决方案,您可以使用该footbib包。如手动的,编译顺序为

  1. latex 文档
  2. bibtex doc.fb
  3. latex 文档
  4. latex 文档

在哪里文档是您的 LaTeX 文档的名称(不带文件扩展名)。当然,latex可以替换为pdflatexlualatexxelatex。文档指出,可能需要进一步编译才能使结果稳定。另一方面,有时不需要步骤 4,如下例所示。

示例代码的输出

\documentclass{article}
\usepackage[paperwidth=16cm,paperheight=6.5cm]{geometry}
\usepackage{footbib}
\usepackage{lipsum}
\begin{document}
Citing a book~\footcite{book-full}.

\lipsum[1]

Another citation here~\footcite{whole-set}.
\footbibliographystyle{unsrt}
\footbibliography{xampl}
\end{document}

相关内容