您好:我正在双面书籍文档类中使用。当我在章节末尾输入内容时\usepackage{endnotes}
,一切都运行良好,除了在页眉中,文本“注释”同时出现在偶数页和奇数页上,而我更希望章节名称在左侧(偶数页),注释只出现在右侧(奇数页)。它适用于章节名称,它们总是出现在右侧(奇数页)。非常感谢您的帮助(我希望这很清楚——这是我第一次使用这个论坛)!\let\footnote=\endnote
\theendnotes
答案1
当endnotes
定义其节标题时,它会将左标记和右标记都设置为注释名称,这就是您获得所描述的行为的原因。使用标准book
类且没有其他标题格式,只需执行以下操作即可:
\documentclass[twoside]{book}
\usepackage{lipsum}
\usepackage{endnotes}
\let\footnote=\endnote
\makeatletter
\def\enoteheading{\section*{\notesname
\markright{\MakeUppercase{\notesname}}}%
\@afterindenttrue
}
\makeatother
% Following command to produce dummy text and notes
\newcommand{\lipnote}{\lipsum*\footnote{\lipsum}\par}
\begin{document}
\chapter{A chapter}
\section{A section}
\lipnote
\lipnote
\clearpage
\theendnotes
\end{document}