为了在 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}