将脚注变成参考书目部分

将脚注变成参考书目部分

我已经用 50 个元素编写了文档\{footnote}。现在我意识到我需要在文档末尾制作一个参考书目页面。有没有办法让 LaTeX 将这些脚注变成参考书目部分?我是否需要将它们全部更改为\autocite{}元素,然后包含类似这样的内容

\printbibliography[heading=bibempty] % if you want a bibiography at the end as well
\end{document}

根据这个问题

答案1

您可以将所有脚注转换为尾注,然后将其称为“参考文献”:

在此处输入图片描述

\documentclass{article}
\usepackage{endnotes,lipsum}
\let\footnote\endnote
\renewcommand{\notesname}{References}
\begin{document}
\lipsum[1-6]\footnote{\lipsum[4][1-3]}
\lipsum[7-14]\footnote{\lipsum[5][1-3]}
\lipsum[15-17]\footnote{\lipsum[6][1-3]}
{\parindent 0pt\parskip 2ex
\def\enotesize{\normalsize}
\theendnotes}
\end{document}

但为了获得正确的格式,最好的方法是创建一个 .bib 文件并用引用命令手动替换脚注,并以标准方式使用 bibtex 或 biblatex。

相关内容