我正在处理一份文档,其中我想在图片左侧显示章节号,在右侧显示章节号和章节标题。
当右侧有章节时,为左页添加章节编号命令时,它总是以 1 章为单位,因为它很可能使用上一章的编号。
当从左侧开始时,我无法将标题文本移动到下一页。
以下是我目前使用的一些代码片段:
\usepackage{eso-pic}
\newcommand\BackgroundPic{
\put(0,0){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight]{Figures/Generic/chapter_page.pdf}
\vfill
}}}
和
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\vspace*{\fill}
\AddToShipoutPicture*{\BackgroundPic}
\begin{center}
\thechapter %This page intentionally contains only this sentence.
\end{center}
\vspace{\fill}
\thispagestyle{empty}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother