尾注列表的对齐

尾注列表的对齐

我在文档末尾添加了一些脚注和尾注。第一个尾注与其余的尾注/脚注不对齐:

\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}

目前看起来是这样的: 在此处输入图片描述

但我希望所有注释都与第一个注释对齐。最好的方法是什么?

答案1

使用下面的在序言部分:

\renewcommand\enoteformat{\rightskip=0pt \leftskip=0pt \parindent=0em
  \leavevmode\makeenmark\raggedright}

在此处输入图片描述

相关内容