根据出版商规则,尾注部分应位于附录部分之前。我\endnote
在附录部分使用了一个,我如何获得最后的尾注输出,它没有出现在该 endnote
部分中。
梅威瑟:
\documentclass{article}
\usepackage{endnotes}
\title{This is endnote testing}
\author{Note}
\begin{document}
\maketitle
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 1st endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 2nd endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 3rd endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 4th endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 5th endnote}
\theendnotes
\appendix
\section{Section}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 6th endnote}
\end{document}
答案1
您需要在尾注文件关闭之前给出文本,稍后再进行标记。
我在所有标记前都留了空格,但它们看起来有点奇怪,我fooo\endnote{...}
不希望foo \endnote{....}
\documentclass{article}
\usepackage{endnotes}
\title{This is endnote testing}
\author{Note}
\begin{document}
\maketitle
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 1st endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 2nd endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 3rd endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 4th endnote}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnote{This is 5th endnote}
\endnotetext[6]{This is 6th endnote}
\theendnotes
\appendix
\section{Section}
This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. \endnotemark[6]
\end{document}