提案的标题。我做错了什么

提案的标题。我做错了什么

我以与定理对象完全相同的方式定义命题对象:

\theoremstyle{plain} \newtheorem{theorem}{Theorem}
\theoremstyle{plain} \newtheorem{proposition}{Proposition}

但是当我给 Theorem 对象命名时:

\begin{theorem}[Theorem of Webber]
\end{theorem}

我会如愿以偿:

定理1.(韦伯定理)。

但当我对一个命题做同样的事情时,我得到的是凌乱的

命题1。【塞巴斯蒂安的提议】

为什么会发生这种情况?我该如何避免?

编辑:

\documentclass[12pt]{report}

\usepackage{amsthm}

\theoremstyle{plain} \newtheorem{theorem}{Theorem}

\theoremstyle{plain}\newtheorem{proposition}[theorem]{Proposition}

\begin{document}

\begin{theorem}[Theorem of Webber]
This is a theorem.
\end{theorem}

\begin{proposition}[Proposition of Sebastian]
This is a proposition.
\end{proposition}
\end{document}

相关内容