风格建议+怎么做?

风格建议+怎么做?

我是 LaTeX 的初学者(而且我没有太多时间来提高我的知识...)。

我正在写一份文档,下面您可以找到该文档的图片和代码。

问题 1) 如何处理两章之间的空白奇数页?显然我想要它,但问题是:我应该有数字吗?我应该显示章节标题吗?我应该显示行吗?只有空白页更好吗?还是只有行号,没有标题?还是只有数字?

所以...我需要一个建议:D

问题2:如何实现你建议的操作?

在此处输入图片描述

\documentclass[12pt,b5paper,twoside,openright]{report}
\usepackage[b5paper,twoside,top=2.8cm,bottom=2.8cm,left=3cm,right=1.7cm]{geometry}

\usepackage{fancyhdr}

\pagestyle{fancy}\addtolength{\headwidth}{0pt}

\renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}}

\renewcommand{\sectionmark}[1]{\markright{\thesection \ #1}{}}

\rhead[\fancyplain{}{\bfseries\leftmark}]{\fancyplain{}{\bfseries}}

\cfoot{}                     

\setlength{\headsep}{0.2in}

\begin{document}

\fancyfoot[C]{\thepage}
\pagenumbering{roman}

\chapter{Introduction}
\addcontentsline{toc}{chapter}{Introduction}
\fancyhead{}
\fancyhead[RO,LE]{\bfseries Introduction}

Blablablablabla

\chapter{chapter 1}
\fancyhead{}
\fancyhead[RO,LE]{\bfseries chapter 1}
blablablablabla

\end{document}

答案1

据我所知,排版规则更喜欢空白页是真正的空白。有一个小包可以实现这一点:emptypage

另一种可能性是,如果您使用该titlesec包自定义分段命令,则可以使用 option 加载它[clearempty]。在这种情况下,您可能还想使用它的配套包,titleps而不是fancyhdr(使用 option 加载 titlesec [pagestyles]),因为它使用起来更简单,因为它不需要摆弄系统marks

相关内容