如何使用 LaTeX 在页面末尾添加参考文献?

如何使用 LaTeX 在页面末尾添加参考文献?

我知道如何使用 cite 和 regard to literature 等等,但在这种情况下我想做些别的事情:

我想要这样的东西:

 Page 1:
 bla bla bla





 bla bla
 Grade: 4.6[1]
 bla bla


 bla
 ___________________________________________
 [1]: According to Russian grading system with 1: "insufficient" and 5 "excellent"
 end of page;

有谁知道这是怎么做到的吗?

答案1

您可以使用\footnote-command。只要您的脚注看起来不像您引用的脚注(“[1|”),这对您来说应该没问题

\documentclass{article}

\begin{document}

Some normal text, which is typeset by Mr. Drofnats, a happy small
computer.\footnote{See the \TeX-Book for more details about Mr. Drofnats}

\end{document}

以正文和页末脚注结尾:

文本中的脚注 页末的脚注

答案2

您可以使用lastpage.sty以下帮助

\pageref{FirstPage} ............. \pageref{LastPage}

相关内容