尾注无标题

尾注无标题

我想使用 XeLaTeX 按照 MLA8 撰写论文,但为此创建的自动标题\theendnotes会妨碍我。已经有关于如何更改标题的说明(翻译(本地化) \theendnotes 标题),例如\renewcommand{\theendnotes}{Anmerkungen}。但是,如果我将最后一个括号留空,则没有标题文本,但它仍然占用空间,就好像有东西在那里一样。我该如何改变这种情况,以便我可以简单地使用

\begin{center}
Notes
\end{center}

这是我的最小代码:

\documentclass{article}

\documentclass[12pt]{article}

\usepackage[letterpaper]{geometry}
\usepackage{times}
\geometry{top=1.0in, bottom=1.0in, left=1.0in, right=1.0in}

\usepackage{setspace}
\doublespacing

\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{} 
\chead{} 
\rhead{Name \thepage} 
\lfoot{} 
\cfoot{} 
\rfoot{} 
\renewcommand{\headrulewidth}{0pt} 
\renewcommand{\footrulewidth}{0pt}

\usepackage{endnotes}
\let\footnote\endnote
\def\footnotetext{\endnotetext[\number\numexpr\value{endnote}+1]}
\let\footnotemark\endnotemark

\renewcommand{\notesname}{}

\begin{document}
\begin{flushleft}

Name\\
Professor\\
Class\\
Date\\

\begin{center}
Testing%
    \footnote{Formatting in accordance with MLA8.}
\end{center}

\setlength{\parindent}{0.5in}

Test

\newpage

\begin{center}
Notes
\end{center}

\theendnotes

\end{flushleft}
\end{document}

相关内容