在回忆录中添加手动标题页时调整目录中的页码

在回忆录中添加手动标题页时调整目录中的页码

我正在为我的博士论文写一个模板,并制作要包含的科学出版物的标题页。根据 daleif 的建议这里,我正在使用titlingpage环境来执行此操作,然后使用addcontentsline它将其添加到目录中。

但目录中的页码被重置为 1。我怎样才能让它继续使用之前使用的页码计数器?

平均能量损失

\documentclass[openright]{memoir}

\usepackage{lipsum}

\begin{document}
    
    \tableofcontents
    
    
    \chapter{Introduction}
    \lipsum[1-3]
    
    \chapter{Methodology}
    \lipsum[4-6]
    
    \chapter{Results and Discussion}
    \lipsum[7-9]
        
    \chapter{Conclusion and Outlook}
    \lipsum[10]
    
    \cleardoublepage
    
    \begin{titlingpage}
        \addcontentsline{toc}{chapter}{Custom Title Page}
        
        \centering
        \phantom{---}
        \vfill
        \scshape\Huge
        An Awesome Title Page
        \vfill
    \end{titlingpage}
    
\end{document}

在此处输入图片描述

答案1

正如 daleif 在上面的评论中解释的那样,带星号的版本titlingpage解决了该问题:

\documentclass[openright]{memoir}

\usepackage{lipsum}

\begin{document}
    
    \tableofcontents
    
    
    \chapter{Introduction}
    \lipsum[1-3]
    
    \chapter{Methodology}
    \lipsum[4-6]
    
    \chapter{Results and Discussion}
    \lipsum[7-9]
        
    \chapter{Conclusion and Outlook}
    \lipsum[10]
    
    \cleardoublepage
    
    \begin{titlingpage*}
        \addcontentsline{toc}{chapter}{Custom Title Page}
        
        \centering
        \phantom{---}
        \vfill
        \scshape\Huge
        An Awesome Title Page
        \vfill
    \end{titlingpage*}
    
\end{document}

在此处输入图片描述

相关内容