\documentclass{article}
\usepackage{endnotes}
\begin{document}
text\endnote{test footnote}
\theendnotes
\end{document}
注释前面会有一个“Note”字样,如何去掉这个“Notes”字样?
答案1
您可以使用\renewcommand*{\enoteheading}{}
来完全删除标题。
例子:
\documentclass{article}
\usepackage{endnotes}
\renewcommand*{\enoteheading}{}% removes the heading comletely
\begin{document}
text\endnote{test footnote}
\theendnotes
\end{document}
如果只需要删除(或替换)文本“注释”(而不是垂直空间),请重新定义 \notesname
。
例子:
\documentclass{article}
\usepackage{endnotes}
\renewcommand*{\notesname}{}% removes only the name
\begin{document}
text\endnote{test footnote}
\theendnotes
\end{document}
答案2
我是 Latex 的初学者,因此根本不是专家。但是,我通过添加\def\notesname{\relax}
尾注的定义找到了解决方案。