设置回忆录类页码的字体大小

设置回忆录类页码的字体大小

我的文档要求正文使用 Times New Roman 字体,字号为 12,页码为 8。

我是 Latex 的新手,我在回忆录类的文档中查找了它,但我比以前更加困惑,因为我发现不同类型的文本大小和选项有不同的类选项,如附加链接文档的表 3.7 所示。

http://www.tex.ac.uk/ctan/macros/latex/contrib/memoir/memman.pdf

有人能告诉我这件事吗?非常感谢

答案1

如果您使用标准memoir标题,则只需在序言中添加以下几行即可:

\makeevenfoot{plain}{}{\scriptsize\thepage}{}
\makeoddfoot{plain}{}{\scriptsize\thepage}{}
\makeevenhead{headings}{\scriptsize\thepage}{}{\slshape\leftmark}
\makeoddhead{headings}{\slshape\rightmark}{}{\scriptsize\thepage}

事实上,如果您没有另行指定,则使用的页面样式memoiremptyplainheadings

平均能量损失

\documentclass{memoir}
\usepackage{lipsum}

\makeevenfoot{plain}{}{\scriptsize\thepage}{}
\makeoddfoot{plain}{}{\scriptsize\thepage}{}
\makeevenhead{headings}{\scriptsize\thepage}{}{\slshape\leftmark}
\makeoddhead{headings}{\slshape\rightmark}{}{\scriptsize\thepage}

\begin{document}
\frontmatter
\tableofcontents

\mainmatter
\chapter{Test}
\lipsum[1-4]
\section{A section}
\lipsum[1-5]
\end{document} 

输出:

在此处输入图片描述

相关内容