有没有一种简单的方法可以让引用以脚注的形式出现,而不是以文章末尾的章节形式出现?最好使用 bibtex。
答案1
作为基于 BibTeX 的解决方案,您可以使用该footbib
包。如手动的,编译顺序为
latex
文档bibtex
doc.fblatex
文档latex
文档
在哪里文档是您的 LaTeX 文档的名称(不带文件扩展名)。当然,latex
可以替换为pdflatex
、lualatex
或xelatex
。文档指出,可能需要进一步编译才能使结果稳定。另一方面,有时不需要步骤 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}