我在文档末尾添加了一些脚注和尾注。第一个尾注与其余的尾注/脚注不对齐:
\documentclass[12pt,a4paper]{report}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{hyperref}
\usepackage{parskip}
\usepackage[toc,page]{appendix}
\usepackage{endnotes}
\let\footnote\endnote
\renewcommand\enoteheading{\chapter{Notes}}
\begin{document}
\tableofcontents
\chapter{chapter}
\section{section}
first\footnote{hello},
second\endnote{this is my equation
\begin{equation}
z=x+y
\end{equation}
}
third\endnote{another equation $a+b+c$}
\appendix
\addcontentsline{toc}{chapter}{Notes}
\theendnotes
\end{document}
但我希望所有注释都与第一个注释对齐。最好的方法是什么?