将 \newtheorem 与独立文档类结合使用

将 \newtheorem 与独立文档类结合使用

是否有可能创建一个包含定理的小文件?(可能使用独立文档类)使用以下代码与独立文件失败:

\documentclass{standalone}
\newtheorem{theorem}{Theorem}
...
\begin{document}
    \begin{theorem}
        ...
    \end{theorem}
\end{document}

答案1

在文档中使用列表环境(例如定理环境)时standalone,可以使用该varwidth选项。以下示例编译正确。

\documentclass[varwidth]{standalone}
\newtheorem{theorem}{Theorem}
\begin{document}
    \begin{theorem}
    A theorem.
    \end{theorem}
\end{document}

相关内容