I am using a JACS template achemso-demo.tex from that I downloaded and imported into Overleaf.
I made my first draft with this template and that worked fine but I have been asked to change it to two columns, and I don't know how to do this.
There is an achemso.pdf file at ctan.org which if I search for 'two' has a section on setting up two columns.
I copied the following text into my .tex file near the top of the file.
\newcommand*\acs@layout@shared{%
\AtBeginDocument{\singlespacing}%
\twocolumn
\tolerance=2000\relax
\emergencystretch=10pt\relax
\geometry{
letterpaper,
top = 12.7mm,
bottom = 16.8mm,
left = 19.3mm,
right = 19.3mm
}%
\setlength{\columnsep}{8.1mm}%
\setlength{\parindent}{3.3mm}%
\renewenvironment{acknowledgement}{%
\def\@tempa{acknowledgement}%
\ifx\@currenvir\@tempa
\let\par\relax
\acksize
\vspace{6pt}%
\textbf{\acknowledgementname}%
\else
\acs@section*{\acknowledgementname}%
\fi
}{%
\acs@par
}%
}
And then I types the following lines at the location where I wanted the 2 columns to begin
\begingroup
\def\@tempa{twocolumn}
\ifx\acs@layout\@tempa
\aftergroup\acs@layout@shared
\fi
\def\@tempa{two-column}
\ifx\acs@layout\@tempa
\aftergroup\acs@layout@shared
\fi
\endgroup
⟨/class⟩
Would someone be able to tell me what I need to type into the .tex file and where in order for it to compile correctly?
Thank you.
achemso-demo.texadd\twocolumnafter\end{abstract}– Simon Dispa Jan 27 '23 at 22:11I have unwanted space between my abstract now and the two columns but I am getting there. I shall resolve the query as the 2 columns and figure query are resolved. Thanks
– Naz Jan 28 '23 at 08:53