我有以下文件:
\documentclass{article}
\usepackage{titling, graphicx}
\title{Title goes here}
\author{Authors go here}
\date{}
\begin{document}
\include{title}
\pagenumbering{Roman}
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\section{Introduction}
\end{document}
我希望我的标题页插入在最前面,然后是没有页码的黑色页面,然后是从页码 I 开始的目录,包含简介部分的页面是页码 1,但是目录实际上是从页码 II 开始的。我已将此代码与我编写的另外两个文档的代码进行交叉引用,但我不完全确定为什么它没有按预期工作。
答案1
\thispagestyle{empty}
只会隐藏页码,但不会导致下一页以 I ( 或 i、或 1 ...) 编号。放在\pagenumbering{Roman}
之前\tableofcontents
。