如何僅更改某一部分的頁碼位置?

如何僅更改某一部分的頁碼位置?

我大學的論文要求分頁方式如下:

(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的問題。

如果有人可以提供協助,我將不勝感激。

答案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}

在此輸入影像描述 在此輸入影像描述

相關內容