插入空白页并不总是有效

插入空白页并不总是有效

在我的文档中我需要: - 封面 - 空白页 - 感谢页 - 空白页 - 然后内容开始

我成功替换了第一个空白页,但“致谢”页后的第二页空白页却不显示。我该如何插入第二页空白页?

编辑:我注意到我的空白页确实出现了,但它们出现在目录之后,而它们应该出现在目录之前。

这是我当前的代码,带有匿名文本占位符:

主文本

%Preamble
\documentclass[a4paper,french,oneside,openright]{book}

\usepackage{afterpage}
\newcommand{\blankpage}{
    \null
    \thispagestyle{empty}
    \addtocounter{page}{-1}
    \newpage
    }

\usepackage{babel}
\usepackage{lipsum}

\usepackage{tocloft,calc}
\renewcommand{\cftchappresnum}{Chapter }
\AtBeginDocument{\addtolength\cftchapnumwidth{\widthof{\bfseries Chapter }}}


\title{Title}
\author{Name}
\date{2020}
\pagestyle{myheadings}
\begin{document}
    \input{Pages/TitlePage.tex}
    \input{Pages/Thanks.tex}


    \tableofcontents


    \chapter{Introduction}
        \section{Introduction}
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
    \chapter{Chapter title}
        %\section{SectionTitle}  %Testing what happens in table of contents when there is a chapter without section.
        \lipsum
    \chapter{Chapter title}
        \section{SectionTitle}
        \lipsum
\end{document}

标题页.tex

\begin{titlepage}
    \newcommand{\HRule}{\rule{\linewidth}{0.5mm}}

    \HRule \\[0.9cm]
    \begin{center}
        \textsc{\Huge Title}\\[1cm]
        \textsc{\LARGE Subtitle}\\[1.5cm]
    \end{center}
    \HRule \\[1.5cm]

    \begin{center} \Large
        \begin{tabular}{ l r }  
            \emph{Text} & Text\\ 
            \emph{Text} & Text
        \end{tabular}
    \end{center}

    \vfill

    \begin{center} \large
        \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} l r @{}}
            \ Text & Text\\
            \ Text & Text\\
            \ Text & Text\\
            \ Text & Text\\
            \ Text & Text
        \end{tabular*}
    \end{center}
    \afterpage{\blankpage}
\end{titlepage}

谢谢.tex

\part*{Remerciements}
\afterpage{\blankpage}

Thanks.tex(备选尝试)

\part*{Remerciements}
\afterpage{\blankpage}

\afterpage{\blankpage}

答案1

通过使用解决

\blankpage

代替

\afterpage{\blankpage}

在 Thanks.text 文件中。

相关内容