At present, the achemso package doesn't number the sections by default in the following MWE. I was wondering how to make the sections numbered such that I can cross-reference sections.
Code: Select all
\documentclass[journal=jpccck,manuscript=article]{achemso}
\usepackage[T1]{fontenc}
\usepackage[sort&compress,numbers,super]{natbib}
\AtBeginDocument{\nocite{achemso-control}}
\usepackage{caption}
\usepackage{booktabs}
\DeclareCaptionLabelFormat{myformat}{#1~S#2}
\captionsetup{labelformat=myformat}
\title{Sample Title}
\begin{document}
\section{Section1}
\label{sec1}
This is section 1.
\section{Section2}
I want to cite the section as Section~\ref{sec1}.
%The last line should ideally be numbered "Section 1".
\end{document}