我正在classic-thesis
为文档使用样式和\bibliographystyle{kluwer}
。默认情况下,所有引文均在文档末尾的参考书目中给出。例如,当我使用时,给定页面上的引文将通过其标识符引用,比如说 [Author 2001] \cite{author2001}
。引文的完整条目可以在末尾的参考书目中看到,标识符为 [Author 2001]。我希望此条目的完整条目出现在\cite{author2001}
调用命令的同一页面上。由于classic-thesis
支持边注,如果引文可以作为边注出现,甚至在脚注和参考书目中出现,那就太好了。有没有什么软件包/技巧可以实现这一点?
答案1
该软件包biblatex
可以做到这一点;查看用户手册时,biblatex
我还发现“该inlinebib
软件包是为脚注中给出的传统引用而设计的。”我会推荐biblatex
Tough,因为它更常用。
一个例子:
\documentclass{article}
\usepackage[autocite=footnote,notetype=foot+end,style=authortitle-ibid]{biblatex}
\bibliography{references}
\begin{document}
See the \texttt{Biblatex}~\footcite{biblatex} documentation for more information on this.
\printbibliography
\end{document}
参考文献.bib:
@manual{biblatex,
author = {Lehman, Philipp},
title = {The {Biblatex} Package},
subtitle = {Programmable Bibliographies and Citations},
month = {6},
year = {2014},
url = {http://ctan.org/pkg/biblatex},
}
这将产生以下输出:
欲了解更多信息,请查看Biblatex 手册。