[Tex/LaTex] achemso package in suppinfo mode does not show Contents

achemsotable of contents

I am writing a JACS communication Supporting Information in Latex using achemso package where the manuscript type set to suppinfo.

\documentclass[journal=jacsat,manuscript=suppinfo]{achemso}

I am then calling for the contents (sections and subsections) with:

\tableofcontents

As here in the simplified form

\documentclass[journal=jacsat,manuscript=suppinfo]{achemso}
\title{Title goes here}

\begin{document}

\tableofcontents

\section{Header 1}
\subsection{Header 1.1}
\subsection{Header 1.2}
\subsection{Header 1.3}
\subsection{Header 1.4}
\section{Header 3}
\section{Header 4}
\section{Header 5}
\section{Header 6}

\end{document}

But I get an empty contents section enter image description here

How can I fix that?

Best Answer

The standard settings used unnumbered sections for supinfo: these are not written to the .toc file. You need to add

\SectionNumbersOn

before \begin{document} to reactivate them.

Related Question