自由定位脚注/评论

自由定位脚注/评论

我正在写一篇论文,希望“常规”脚注像往常一样出现在参考文献列表中,但与它们相反,我希望插入一条注释,该注释将出现在第一页的底部。我的问题分为两部分:

  1. 是否可以只在页面底部放置一个特殊脚注,而所有其他脚注都放在参考文献列表中?

  2. 是否可以放置这样的注释而不将其与文本中的特定位置相关联(即 - 这样它就不会在文本中的某个特定点上显示为上标,而是作为一般注释)?它甚至不必编号(事实上 - 最好不要编号)。

    • 更新:下面的答案很好,它回答了我对文档类:article 的问题。但我应该强调:我使用的是文档类:Revtex4-1。此类似乎与“endnotes”包不兼容,因此解决方案对我而言不起作用。我的问题仍然存在,我希望得到帮助。

提前谢谢您!

答案1

\documentclass{article}
\usepackage{endnotes}
\let\svthefootnote\thefootnote
\newcommand\freefootnote[1]{%
  \let\thefootnote\relax%
  \footnotetext{#1}%
  \let\thefootnote\svthefootnote%
}
\textheight 2in
\begin{document}
This is a free footnote%
  \freefootnote{Here is my free footnote, unlabeled here or in text}.
Now for an endnote\endnote{Here is an endnote}.

\theendnotes
\end{document}

在此处输入图片描述

如果您希望尾注不是作为“注释”,而是与参考文献放在同一列表中,那么这里有一种方法,基本上是创建脚注\cite

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{mynotes.bib}
@note{A01,
  note = {This is a footnote. This is a footnote. This is a footnote. 
    This is a footnote. This is a footnote. This is a footnote. }
}
\end{filecontents*}
\begin{filecontents*}{mycites.bib}
@BOOK{author1999book,
title = {Very Informative and Handsome Book},
publisher = {College Town, ST: College University Press},
year = {1999},
author = {First M. Last},
}
@BOOK{test2,
title = {Not So Informative and Handsome Book},
publisher = {College Town, ST: College University Press},
year = {1899},
author = {Last, First M.},
}
\end{filecontents*}
\renewcommand\refname{References and Notes}
\bibliographystyle{unsrt}
\begin{document}
This is a test of a citation\cite{author1999book} and a footnote\cite{A01},
followed by a citation\cite{test2}.
\bibliography{mycites,mynotes}
\end{document}

在此处输入图片描述

相关内容