我在乳胶文件中有这个:
\documentclass[conference]{IEEEtran}
\newtheorem{theorem}{Theorem}
在某个时候我有这个:
\begin{theorem}
foo
\end{theorem}
但我收到了这个错误:
! LaTeX Error: No counter 'Theorem' defined.
答案1
请随时发帖完全的表明问题的文件。
您显示的代码不会产生您所描述的错误。
这个文件做产生该错误
\documentclass[conference]{IEEEtran}
\newtheorem{theorem}{Theorem}[Special Theorem]
\begin{document}
\begin{theorem}
foo
\end{theorem}
\end{document}
解决方案是删除[Special Theorem]