在乳胶目录标题前添加一些 space

Add some space befor TOC title in latex

我尝试在 TOC 之前添加一些 space,我使用了 \vspace 但它不起作用

\documentclass[12pt, french,a4paper]{report}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}

\begin{document}
   %...
  \vspace*{.3\paperheight} %doesn't work
  \tableofcontents
   %...
  \chapter{chapitre}
  \section{section}
  \subsection{subsection}

  \newpage
  \chapter{chapitre}
  \section{section}
  \subsection{subsection}
\end{document}

有人有解决办法吗?

目录会自动在新的页面开始新的章节。如果您在它之前使用 \vspace,它仍然会在前一页上并且不会对您的目录产生任何影响。但是,您可以更改目录的定义并在其中添加一些 space:

\documentclass[12pt, french,a4paper]{report}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}

\makeatletter
\renewcommand\tableofcontents{%
    \if@twocolumn
      \@restonecoltrue\onecolumn
    \else
      \@restonecolfalse
    \fi
    \chapter*{\vspace{5cm}\contentsname
        \@mkboth{%
           \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
    \@starttoc{toc}%
    \if@restonecol\twocolumn\fi
    }
\makeatother



\begin{document}
   %...
  \tableofcontents
   %...
  \chapter{chapitre}
  \section{section}
  \subsection{subsection}

  \newpage
  \chapter{chapitre}
  \section{section}
  \subsection{subsection}
\end{document}