以下代码为我提供了“前言”和“序言”,但在它们各自的页面顶部有单词CONTENTS
(请参阅下面的屏幕截图,了解前言页面)。就好像“前言”和“序言”仍然是文档内容部分的一部分。
我不知道如何才能不把这个词放在那里。谢谢。
\documentclass[11pt,oneside,letterpaper]{book}
\usepackage{graphicx}
\graphicspath{ {TSTPT_Images/} }
%\usepackage[a4paper]{geometry}
\usepackage{microtype}
\usepackage{xcolor}
\usepackage[utf8]{inputenc}
\usepackage[colorlinks=false, pdfborder={0 0 0}]{hyperref}
\usepackage{cleveref}
\begin{document}
\frontmatter
\title{\Huge THIS IS MY TITLE}
\author{Name of author here}
\date{\today}
\maketitle
\begin{center}
\chapter*{\parbox{\linewidth}{\centering Book One:\\Title of Book One}}
%\fbox{\includegraphics[width=0.6\textwidth]{image}}
\end{center}
\clearpage
\tableofcontents
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Preface}
\section*{Preface}
Text here.
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Prologue}
\section*{Prologue}
Text here.
\cleardoublepage
\mainmatter
\phantomsection
\addcontentsline{toc}{section}{Chapter The First}
\chapter*{Chapter The First}
\section{Title Uno}
Text here.
\cleardoublepage
\section{Title Dos}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{section}{Chapter The Second}
\chapter*{Chapter The Second}
\section{Title Tres}
Text for test.\\
\end{document}
答案1
\markright{}
之后\tableofcontents
,\cleardoublepage
有助于从页眉中删除章节标题。页码保留在页眉中。
另一种方法是\thispagestyle{plain}
使用前言中的章节的首页。
还:
\usepackage[hidelinks]{hyperref}
对于未标记的链接像 这样的章节编号有点奇怪,也许这是其内涵:未编号的章节,具有独立编号的章节
0.1
:0.2
\usepackage{remreset} \makeatletter \@removefromreset{section}{chapter} \makeatother \renewcommand*{\thesection}{\arabic{section}}
重复的页面锚点问题可以通过以下方法解决:
\begingroup \hypersetup{pageanchor=false} \maketitle \endgroup
“书籍扉页”的盒子问题可以通过以下方式修复:
\vspace*{50pt} \begingroup \centering \Huge\bfseries Book One:\\Title of Book One \par \thispagestyle{plain} \endgroup \clearpage
可能需要在开始部分插入一些空白页来固定页码。奇数页为右页,偶数页为左页。