自定义尾注

自定义尾注

为了在 LaTeX 中自定义脚注,我使用了该footmisc包。具体来说,为了删除脚注中的缩进和文本对齐,我在序言中添加了以下内容:

\usepackage[hang, flushmargin, ragged]{footmisc}

我提交的期刊现在需要尾注。为此我使用了软件包endnotes。但我找不到类似footmisc尾注的软件包。我应该怎么做才能删除尾注中的缩进和文本对齐?

答案1

您可以重新定义\enoteformat

\documentclass{article}
\usepackage{endnotes}
\usepackage{lipsum}

\let\footnote=\endnote

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

\begin{document}

text\footnote{test footnote1}
\lipsum[1]
text\footnote{test footnote2 \lipsum[2]}
\lipsum[1-7]
\theendnotes
\end{document}

在此处输入图片描述

相关内容