重新开始回忆录附录的页码编号

重新开始回忆录附录的页码编号

我的论文太大(540 页),无法印成一卷,所以我需要将附录与论文正文分开。

但我只想要一个具有两个主标题的 pdf 文件:一个用于论文,一个用于附录页,附录页码重新从 0 开始。

回忆录课能做到这一点吗?

第 1 卷:

  • 论文标题页

  • 目录

  • 论文内容(第 1 章 .. n)第 0 页 .. 450

  • 参考书目

第 2 卷:

  • 标题为“论文附录……”的页面

  • 我的附录 A - p 0 ... 15

  • 我的附录 B - p 15 ... 30

    % !TEX encoding =  UTF-8 Unicode
    % -*- program: xelatex -*-
    \documentclass[a4paper, 11pt,twoside, openright]{memoir}
    \usepackage{polyglossia}
    \usepackage{mwe} % just for dummy images
    \usepackage{graphicx}
    \newsubfloat{figure}
    \newsubfloat{table}
    
    \title{My Thesis title}
    \author{Sébastien R}
    \date{2015}
    
    \newcommand{\polimi}{Université Panthéon-Sorbonne\xspace}
    \newcommand{\dei}{Ecole Doctorale de Géographie de Paris\xspace}
    \newcommand{\POLIMI}{\uppercase{\polimi}}
    \newcommand{\DEI}{\uppercase{\dei}}
    
    % titles:
    \renewcommand{\maketitlehooka}{%
      %\license %COMMENT THIS TO REMOVE THE DISCLAIMER NOTE
      \centering
      \includegraphics[width=5cm]{example-image-c}\\[.5cm]
      \POLIMI\\
      \emph{\dei}\\[.2cm]
     My thesis
      \par
      \hrulefill
      \vfill}
    \renewcommand{\maketitlehookb}{\vfill}
    \renewcommand{\maketitlehookc}{%
      \vfill
      \begin{flushleft}
        \textbf{Directrice :}\\
        director \\[.3cm]
        \textbf{Co-directrice :}\\
        co director\\[.3cm]
       Membres du Jury:\\
         \begin{tabular}{ r l }
        \textbf{Rapporteur  :}& rapporteur 2 \\
        \textbf{Rapporteur  :}& rapporteur 1 \\
     \end{tabular}
      \end{flushleft}
      \vfill}
    \preauthor{\begin{flushright}Thèse de doctorat de:\\\bfseries}
    \postauthor{\end{flushright}}
    
    
    \renewcommand{\appendixpagename}{Annexes}
    \renewcommand{\appendixtocname}{Annexes}
    
    \begin{document}
    
    \begin{titlingpage}
      \maketitle
    \end{titlingpage}
    
    \frontmatter
    
    \cleardoublepage
    
    \chapterstyle{bringhurst}
    
    \tableofcontents
    
    \mainmatter
    \chapter{my first chapter}
    \lipsum    
    
    \chapter{my second chapter}
    \lipsum    
    
    \listoftables
    
    \listoffigures
    
    \appendix
    \appendixpage
    
    
    \chapter{my first appendix}
    \lipsum    
    
    \chapter{my second appendix}
    \lipsum    
    
    \end{document}
    

答案1

一般来说:

要重置阿拉伯页码,请使用\pagenumbering{arabic}将下一页页码设置为 1。

要将页码设置为 0,请使用\setcounter{page}{0}

因此,对于您的情况,请尝试:

end of volume 1
\clearpage
\pagenumbering{arabic}
\setcounter{page}{0}
start of volume 2

我认为以页码 0 开始第二卷会让读者觉得不寻常,特别是如果文档是双面打印的,并且偶数页出现在右侧,奇数页出现在左侧。

相关内容