I am working on a Table of Contents that was typeset in LaTeX (I didn't do it manually). The TOC is created using the titletoc package. Here is the current code of importance:
\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}
This formats to where the first page of the first paper get assigned page #1. However, I would like the subsections to also be assigned a single page number, making Jane Doe's Paper start at page 2. I've read the documentation for the package and can't quite figure out how to make this happen.
Here's what it looks like now, but I'd like the Plenary Lectures to be on Page 1, and then Jane's paper to start on Page 2:

I think part of my problem is that I don't understand the arguments here:
\newcommand{\tocTitle}[2]{\contentsline{section}{#1}{#2}{}\nopagebreak[4]}
\newcommand{\tocAuthors}[1]{\contentsline{subsection}{#1}{}{}}
I also am not sure what the {1} after {First Paper} is referencing, but it has to be (I think) the length of the PDF paper that is its referent.
\tocTitle{First Paper}{1}
\tocAuthors{Jane Doe}
Thank you!
easychair.cls? – Werner Dec 27 '19 at 03:16\tableofcontentsat all, yet you're printing a contents via a number of\contentslines. Can you update your code and show what it would look like with more content? Something that represents a minimal example that replicates your current setup. – Werner Dec 27 '19 at 05:04\tocTitle{First paper}{2}. The Plenary Lectures though, being a\subsectionis not set as a\contentline. You could try with\newcommand{\subsectionheading}[2]{\subsection*{#1\hfill #2}}and then\subsectionheading{Plenary Lectures}{2}. – Werner Dec 27 '19 at 06:02\subsectionand the first paper starting on page 2. Perhaps you can explain in more detail why "that did not work." Can you? – Werner Dec 27 '19 at 19:09\newcommand{\subsectionheading}[2]{\subsection*{#1\hfill #2}}to your preamble and then use\subsectionheading{Plenary Lectures}{1}instead of just\subsection*{Plenary Lectures}{1}? – Werner Dec 28 '19 at 02:22