我正在处理用 LaTeX 排版的目录(我没有手动排版)。目录是使用 titletoc 包创建的。以下是当前重要的代码:
\documentclass{easychair}
\titlerunning{ICMI Study 25}
\authorrunning{Table of Contents}
\usepackage{titletoc}
\titlecontents{subsubsection}[2pt]{\addvspace{10pt}\bfseries\titlerule[0.5pt]\filright}{}{}{}[]
\titlecontents{section}[0pt]{\addvspace{5pt}\filright}{}{}{\dotfill\contentspage}[]
\titlecontents{subsection}[10pt]{\addvspace{1pt}\itshape\filright}{}{}{}[]
\newcommand{\tocSection}[1]{\contentsline{subsubsection}{#1\\*\titlerule[0.5pt]\vspace{-9pt plus 2pt minus 2pt}}{}{}\nopagebreak[4]}
\newcommand{\tocTitle}[2]{\contentsline{section}{#1}{#2}{}\nopagebreak[4]}
\newcommand{\tocAuthors}[1]{\contentsline{subsection}{#1}{}{}}
\begin{document}
\begin{center}
\section*{Table of Contents}
\end{center}
\subsection*{Plenary Lectures}
\tocTitle{First Paper}{1}
\tocAuthors{Jane Doe}
\tocTitle{Second Paper}{12}
\tocAuthors{John Smith}
\end{document}
格式为第一篇论文的第一页被分配第 1 页。但是,我希望子部分也分配一个页码,使 Jane Doe 的论文从第 2 页开始。我已阅读该软件包的文档,但不太清楚如何实现这一点。
现在看起来是这样的,但我希望全体会议演讲放在第 1 页,然后 Jane 的论文从第 2 页开始:
我认为我的问题的一部分是我不理解这里的论点:
\newcommand{\tocTitle}[2]{\contentsline{section}{#1}{#2}{}\nopagebreak[4]}
\newcommand{\tocAuthors}[1]{\contentsline{subsection}{#1}{}{}}
我也不确定 {First Paper} 后面的 {1} 指的是什么,但它必须是(我认为)其所指的 PDF 论文的长度。
\tocTitle{First Paper}{1}
\tocAuthors{Jane Doe}
谢谢你!