几何使目录从偶数页/第 ii 页开始

几何使目录从偶数页/第 ii 页开始

我做错了geometry,现在我的目录没有从第页开始i——是的,我想在标题页之前出现两个空白页。换句话说,以下唯一的错误是目录开始晚了一页(偶数页)。

谢谢。

代码如下:

\documentclass[twocolumn]{book}
\usepackage[english]{babel}
\usepackage{geometry}
\usepackage{tocloft} % Customization of TOC LOF LOT
\usepackage{blindtext}
\usepackage{hyperref} % Hyperlinks

\begin{document}

\onecolumn

\clearpage
~
\thispagestyle{empty}
\clearpage

\newgeometry{
    tmargin  =30mm,
    bmargin  =30mm,
    lmargin  =35mm,
    rmargin  =35mm,
    headsep  =0.5cm,
    footskip =1cm,
    columnsep=.3cm,
    headheight=.5cm
}
\begin{titlepage}
    \textbf{TITLE PAGE}
    %\end{mypar}
\end{titlepage}
\restoregeometry

\frontmatter
{
    \hypersetup{
        linkcolor=black,
        linktoc=page
    }\textbf{}
\tableofcontents
}

\cleardoublepage
\addcontentsline{toc}{section}{\listtablename}

\listoftables
\clearpage
\onecolumn

\section{Preface}
    The information herein is the original text.
\clearpage

\section{Introduction}
    A detailed description.
\twocolumn
\clearpage

\mainmatter

\blinddocument

\end{document}

答案1

这是因为\textbf{}就在之前\tableofcontents

\documentclass[twocolumn]{book}

\usepackage{tocloft} 
\usepackage{blindtext}

\begin{document}

\frontmatter
\textbf{}
\tableofcontents

\mainmatter
\blinddocument

\end{document}

相关内容