如何自动将所有脚注的内容放在一个文档中

如何自动将所有脚注的内容放在一个文档中

我写了一篇论文,其中的脚注中有参考书目,我想在论文末尾将它们组织到参考书目中(使用 Lyx)。

我可以复制每个脚注并将其粘贴到这样的文档中,但这会花费大量时间。

您是否知道如何将每个脚注的内容自动放入一个文档中,以便我可以将其组织起来作为我的参考书目呈现?

非常感谢你的帮助!

答案1

您可以重新定义内部命令\@footnotetext以将其内容写入文件。

这是一个简单的解决方案,将脚注写入文件file.ftn,其中文件file名为.tex参考书目:

\documentclass{article}

\newwrite\footaux
\immediate\openout\footaux\jobname.ftn
\immediate\write\footaux{\string\begin{thebibliography}{99}}
\AtEndDocument{
\immediate\write\footaux{\string\end{thebibliography}}
\closeout\footaux
}
\makeatletter
\let\@footnotetextorig\@footnotetext
\long\def\@footnotetext#1{\@footnotetextorig{#1}\immediate\write\footaux
{\string\bibitem:  #1}}
\makeatother
\begin{document}
This is the text\footnote{First footnote}.
\clearpage
This is the text\footnote{Second footnote}.
\end{document}

文件如下.ftn

\begin{thebibliography}{99}
\bibitem: First footnote
\bibitem: Second footnote
\end{thebibliography}

答案2

解决方案构想

  1. 重新定义\footnote命令,以便它将脚注文本保存在参考书目格式的文件中。
  2. 最后使用已保存的参考书目。

解决方案

\documentclass{article}

\usepackage{lipsum}

\usepackage{url}

\let\originalfootnote\footnote
\newwrite\footnotelist
\immediate\openout\footnotelist\jobname.bls
\immediate\write\footnotelist{\unexpanded{\begin{thebibliography}{99}}}
\def\savefootnote#1{\immediate\write\footnotelist{\unexpanded{\bibitem}{fn\thefootnote}\unexpanded{#1}}}
\def\footnote#1{%
  \originalfootnote{#1}%
  \savefootnote{#1}}

\AtEndDocument{\immediate\write\footnotelist{\unexpanded{\end{thebibliography}}}%
\immediate\closeout\footnotelist%
\IfFileExists{\jobname.bls}{\input{\jobname.bls}}{\relax}}

\begin{document}

\lipsum[1-10]

Put a footnote here.\footnote{\url{http://www.acm.org}}

\lipsum[11-20]

Put another footnote here.\footnote{\url{http://ieeexplore.ieee.org}}

\lipsum[21-30]

\end{document}

创建脚注列表文件

\begin {thebibliography}{99}
\bibitem {fn1}\url {http://www.acm.org}
\bibitem {fn2}\url {http://ieeexplore.ieee.org}
\end {thebibliography}

输出

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

相关内容