如何制作脚注参考书目?

如何制作脚注参考书目?

我想要引用被引用页面的脚注。我该怎么做?

答案1

您可能希望查看如下 biblatex 包:

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{csquotes}
\usepackage[style=verbose]{biblatex}      
\bibliography{mem}            
\defbibheading{bibempty}{}     
\begin{document}
my text my text \autocite{ref}
\printbibliography[heading=bibempty] % if you want a bibiography at the end as well
\end{document}

查看指南以了解其他选项/行为。

相关内容