枚举中没有定理的新行

枚举中没有定理的新行

我正在写作业的解决方案。当我将定理放在\begin{thm}\end{thm}后面时\item,枚举中的项目编号后面会有一个新行。如何将定理放在项目编号后面?

\documentclass{文章}
\usepackage{amsmath}
\usepackage{amsthm}

\newtheorem*{thm}{定理}

\开始{文档}
\开始{枚举}
\item[a)]
\开始{thm}
\结束{thm}
\item[b)]
\开始{thm}
\结束{thm}

\end{枚举}

\结束{文档}

在此处输入图片描述

答案1

从表面上看,没有必要使用amsthm。因此,删除它来代替默认\newtheorem定义可以提供所需的结果:

在此处输入图片描述

\documentclass{article}

\usepackage{enumitem,lipsum}

\newtheorem{thm}{Theorem}

\begin{document}

\begin{enumerate}[label={\alph*)}]
  \item
    \begin{thm}
    This is a theorem.
    \lipsum[2]
    \end{thm}
  \item
    \begin{thm}
    This is another theorem.
    \end{thm}
\end{enumerate}

\end{document}

enumitem使枚举配置更容易。

相关内容