尽管设置了“双面”选项,但页码仍居中

尽管设置了“双面”选项,但页码仍居中

使用article类和twoside选项仍然会将页码放在页面中央。选项不是twoside应该将页码放在偶数页的左侧,奇数页的右侧吗?

这是我的 MWE:

\documentclass[a4paper,twoside,titlepage,12pt]{article}
\linespread{1.3}

\usepackage[cm-default]{fontspec}

\usepackage{xgreek}

\setmainfont[Mapping=tex-text]{GFS Didot}

\title{Fuzzy Control}
\author{My Name}

\begin{document}
\maketitle
\newpage
\thispagestyle{empty}
\mbox{}

\begin{abstract}
That's it!
\end{abstract}

\tableofcontents

\include{intro}
\include{outro}
\end{document}

谢谢你的帮助!

答案1

在标准文档类中,有四种预定义的页面样式;以下是直接从fancyhdr包文档中摘取的引述:

在此处输入图片描述

标准或文档类的默认行为articlereport使用book页面plain样式,因此简单地使用twoside类选项无法为您提供页码所需的位置。

如果要更改默认页面样式,可以使用\pagestyle{headings}\pagestyle{myheadings}(可能还会提供页眉信息)。这两个选项都会为您提供twoside页眉,其中 选项包含奇数页右侧的页码,偶数页左侧的页码。

如果需要进一步定制,请使用以下包标题或者花式高清定义您自己的页面样式。无论如何,您都必须使用命令“激活”页面样式\pagestyle

titleps用于定义新页面样式的一个小示例:

\documentclass[a4paper,twoside,titlepage,12pt]{article}
\usepackage{titleps}

\newpagestyle{mystyle}{
  \sethead[a][b][c]{left}{center}{right}
  \setfoot[a][b][c]{left}{center}{right}
}
\pagestyle{mystyle}

\begin{document}

test\clearpage test

\end{document}

更现实的例子:没有页脚,偶数页的页眉:左侧是页码,右侧是节码和标题;奇数页的页眉:左侧是小节标题,右侧是页码;所有信息均带有\small字体大小:

\documentclass[twoside]{article}
\usepackage{titleps}
\usepackage{lipsum}% just to generate filler text

\newpagestyle{mystyle}[\small]{
  \sethead[\thepage][][\thesection~\sectiontitle]{\subsectiontitle}{}{\thepage}
}
\pagestyle{mystyle}

\begin{document}

\section{Test Section}
\lipsum[1]
\subsection{Test Subsection}
\lipsum[1-20]

\end{document}

相关内容