我使用的是已定义页眉的备忘录模板。在附录中,我最大化了几何图形,以便打印大量边距较窄的表格。我目前使用\pagestyle{empty}
或禁用备忘录页眉\pagestyle{plain}
,两者都会删除页眉但不在页脚中打印页码,这是 的默认设置\documentclass{article}
。
如何启用一个简单的页脚,使页码在某些页面的中间,而在其他一些页面的右侧(底部表格位于中间)?
答案1
手册的第 7.3 节memoir
介绍了如何制作自己的页面样式。(您描述的plain
没有页码的样式似乎与memoir
的默认样式不符,因此可能还有其他问题。)但这里有一个示例,说明如何制作右侧带有数字的页面样式:
\documentclass{memoir}
\usepackage{lipsum} % just for sample text
% Define a new pagestyle called 'right'
\makepagestyle{right}
\makeevenfoot{right}{}{}{\thepage}
\makeoddfoot{right}{}{}{\thepage}
% Make a pagestyle called 'myplain', if 'plain' has already been redefined
\makepagestyle{myplain}
\makeevenfoot{myplain}{}{\thepage}{}
\makeoddfoot{myplain}{}{\thepage}{}
\begin{document}
\pagestyle{plain} % or {myplain} if plain doesn't give what you want here
\chapter{A chapter}
\lipsum[1-10]
\pagestyle{right}
\lipsum
\end{document}
您使用的模板可能已重新定义plain
页面样式。如果是这种情况,那么您可以使用myplain
上面定义的页面样式。