使用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
包文档中摘取的引述:
标准或文档类的默认行为article
是report
使用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}