我正在使用COLT 2019 款,它基于 JMLR 样式。使用includegraphics
似乎不起作用 --- 即使我完全按照 JMLR 手册中的方式使用它(请参阅上面的链接)。我收到的错误表明
! Paragraph ended before \@tempa was complete.
我已尝试包含/排除graphicx
,但它仍然保持原样。有什么想法吗?
这是一个简单的例子:
\documentclass[anon,12pt]{colt2019}
\usepackage{graphicx}
\title[Short Title]{Full Title of Article}
\begin{document}
\maketitle
\section{Introduction}
\begin{figure}[htbp]
\floatconts
{fig:example}% label
{\caption{An Example Figure}}% caption command
{\includegraphics[width=0.5\textwidth]{pic}}
\end{figure}
\end{document}
答案1
该类以与包的最新版本不兼容的方式jmlr
重新定义了内部结构。graphicx
目前,直到负责该课程的人员修复不兼容性为止,您可以使用以下解决方法:
\documentclass[anon]{colt2019}
\makeatletter
\let\Ginclude@graphics\@org@Ginclude@graphics
\makeatother
\title[Short Title]{Full Title of Article}
\begin{document}
\maketitle
\section{Introduction}
\begin{figure}[htbp]
\floatconts
{fig:example}% label
{\caption{An Example Figure}}% caption command
{\includegraphics[width=0.5\textwidth]{example-image}}
\end{figure}
\end{document}