
'목차'를 사용할 때마다 '목차'라는 단어가 내가 서식을 지정한 모든 페이지 위에 페이지 번호 바로 옆에 나타납니다. 이 문제를 어떻게 제거합니까?
코드는 다음과 같습니다.
\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)에 페이지 번호 위에 'contents'라는 단어가 있는 것을 볼 수 있습니다. 인터넷 어디에서나 동일한 문제를 겪고 있는 사람이 없는 것 같아 짜증스럽습니다.
답변1
원하는 결과에 따라 다음 중 하나를 사용할 수 있습니다.
\pagestyle{plain}
또는 시 제목에 표시를 설정하기 위해 재정 \poemtitlemark
의(패키지에서 제공 )verse
\renewcommand\poemtitlemark[1]{\markboth{\MakeTextUppercase{#1}}{\MakeTextUppercase{#1}}}
아니면 흔적을 지우려고
\renewcommand\poemtitlemark[1]{\markboth{}{}}