让章节标题依赖于正面和反面页面

让章节标题依赖于正面和反面页面

如果将章节标题与背面页面的镜像对应到矢量页面上,这会是印刷上的不雅行为吗?例如,如果背面页面看起来像这样:

版本:1.1 一些标题

然后,Recto:一些标题 1.2

如果不是的话,该怎么办呢?

顺便说一句,使用回忆录。

答案1

并非如此,这是你的选择,如果你还有章节的话,可能会让用户感到困惑。

以下是默认标题如何将其代码添加到标题中

如果双方:

\makeatletter
\makepsmarks{headings}{%
      \createmark{chapter}{left}{shownumber}{\@chapapp\ }{. \ }
      \createmark{section}{right}{shownumber}{}{. \ }
      \createplainmark{toc}{both}{\contentsname}
      \createplainmark{lof}{both}{\listfigurename}
      \createplainmark{lot}{both}{\listtablename}
      \createplainmark{bib}{both}{\bibname}
      \createplainmark{index}{both}{\indexname}
      \createplainmark{glossary}{both}{\glossaryname}
    }
\makeatother

如果有一页:

\makeatletter
    \makepsmarks{headings}{%
      \createmark{chapter}{right}{shownumber}{\@chapapp\ }{. \ }
      \createplainmark{toc}{right}{\contentsname}
      \createplainmark{lof}{right}{\listfigurename}
      \createplainmark{lot}{right}{\listtablename}
      \createplainmark{bib}{right}{\bibname}
      \createplainmark{index}{right}{\indexname}
      \createplainmark{glossary}{right}{\glossaryname}
    }
\makeatother

请记住随后激活headings

\pagestyle{headings}

对于\createmark命令,第二个参数可以是leftrightboth。选择你的选择

相关内容