I'm trying to compile a document using a class provided by a journal. I get the following error
Paragraph ended before \@tempa was complete.
Emergency stop.
This is the problematic code:
\documentclass{colt2020}
\begin{document}
\begin{figure}
\includegraphics[width=\columnwidth] {Figure1}
\end{figure}
\end{document}
The 'colt2020' class may be found here here. Without the supplied class, the following code does compile and displays the figure
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\includegraphics[width=\columnwidth] {Figure1}
\end{figure}
\end{document}
I can add '\usepackage{graphicx}' to the first example and it will still not compile. It shouldn't matter anyways, since the class requires this package.
\documentclass{...}and ending with\end{document}. – campa Jan 16 '20 at 10:27colt2020.clsis no standard LaTeX class, so you should please provide a link to it. – campa Jan 16 '20 at 11:23