我的大学论文要求按以下方式分页:
(1)引言(致谢、目录、表格列表等)之前的页面应用小写罗马数字编号,以 ii、iii、iv 等开头。底部居中页面的最后一行文本下方至少有一个双倍行距,并且距离页面底部一英寸。
(2)学位论文正文……每页均应编页码在右上角在右边距内……
我该如何解决这个问题,特别是对于上下文表,因为其他部分,我可以手动创建其他文件?
例如,我曾尝试过这个:
\documentclass[12pt]{memoir}
\copypagestyle{chapter}{plain}
\makeevenfoot{chapter}{}{}{}
\makeoddfoot{chapter}{}{}{}
\makeevenhead{chapter}{}{}{\thepage}
\makeoddhead{chapter}{}{}{\thepage}
\copypagestyle{part}{plain}
\makeevenfoot{part}{}{}{}
\makeoddfoot{part}{}{}{}
\makeevenhead{part}{}{}{\thepage}
\makeoddhead{part}{}{}{\thepage}
\makeevenfoot{headings}{}{}{}
\makeoddfoot{headings}{}{}{}
\makeevenhead{headings}{}{}{\thepage}
\makeoddhead{headings}{}{}{\thepage}
\begin{document}
\frontmatter
\begin{abstract}
Abstract\\
Abstract\\
Abstract\\
\end{abstract}•
\newpage
\tableofcontents
\mainmatter
\setcounter{page}{1}
\chapter{One}
blah blah
\section{A}
\section{B}
\chapter{Two}
\section{A}
\section{B}
\end{document}}
这样就解决了 i、ii、iii 和 1、2、3 的问题。但是,如何改变 i、ii、iii 的位置以满足以底部为中心的 (1) 呢?
如果有人能帮忙我将非常感激。
答案1
这很简单。基本上,您只需使用plain
页面样式\frontmatter
,然后重新定义headings
文档其余部分的页面样式。我已将chapter
页面样式别名为命令headings
后\mainmatter
。这样,它将\chapter
仅在目录等之后重新定义页面样式。将章节第一页的页码放在右上角(通常位于底部中央)是一种奇怪的格式。如果您需要将章节的第一页放在底部中央,只需删除该\aliaspagestyle
命令即可。由于您似乎需要所有页面都具有相同的页眉,因此我已将该oneside
选项添加到\documentclass
命令中。
\documentclass[12pt,oneside]{memoir}
\usepackage{kantlipsum} % package for dummy text (not needed)
\makepagestyle{headings}
\makeevenfoot{headings}{}{}{}
\makeoddfoot{headings}{}{}{}
\makeevenhead{headings}{}{}{\thepage}
\makeoddhead{headings}{}{}{\thepage}
\begin{document}
\pagestyle{plain}
\frontmatter
\begin{abstract}
\kant[1-2]
\end{abstract}
\newpage
\tableofcontents
\mainmatter
\pagestyle{headings}
\aliaspagestyle{chapter}{headings} % remove this if chapter beginnings are different
\chapter{One}
\kant
\section{A}
\section{B}
\chapter{Two}
\kant
\section{A}
\section{B}
\end{document}