从每个页码标题中删除“内容”

从每个页码标题中删除“内容”

每当我使用“目录”时,“目录”一词就会出现在我格式化的每个单页上方,紧挨着页码。我该如何摆脱它?

以下是代码:

\documentclass[e book,12pt,twoside,onecolumn,openright,final,show trims]{memoir}
\settrimmedsize{\stockheight}{\stockwidth}{*}
\usepackage[paperwidth=6in, paperheight=9in, includefoot,includehead,top=0.4in, left=.4in, right=0.4in, bottom=0.4in, bindingoffset=.75in]{geometry}

\title{\fontfamily{pzc}\selectfont{\HUGE{\bfseries{Selected Poems:}}}}
\author{\Large A Chrestomathy}
\date{}
\usepackage{verse}


\begin{document}
\begin{titlingpage}
\maketitle
\end{titlingpage}
\newpage
\frontmatter
\tableofcontents
\mainmatter
\poemtitle{Introduction}
\newpage
\poemtitle{Introduction2}
\end{document}

如果你运行这个程序,你会看到每一页(Introduction、Introduction2)的页码上方都有“内容”字样。令人恼火的是,互联网上似乎没有人遇到同样的问题。

答案1

根据所需的结果,您可以使用

\pagestyle{plain}

或重新定义\poemtitlemark(由包提供verse)以将标记设置为诗歌标题

\renewcommand\poemtitlemark[1]{\markboth{\MakeTextUppercase{#1}}{\MakeTextUppercase{#1}}}

或清除标记

\renewcommand\poemtitlemark[1]{\markboth{}{}}

相关内容