amsthm 的证明和定理环境的放置

amsthm 的证明和定理环境的放置

自从我开始使用 LaTeXing 以来,我一直在定理内部编写证明环境,但我看到许多模板或答案,其中首先结束定理,然后开始证明。

也就是说,什么我习惯这样做

\documentclass{amsart}
\usepackage{amsthm}% should anyway be loaded by amsart class
\newtheorem{thm}{Theorem}[section]

\begin{document}
\begin{theorem}
Statement of the result
\begin{proof}
Proof of the result
\end{proof}
\end{theorem}
\end{document}

而我看到大多数人更喜欢写作

...
\begin{theorem}
Statement of the result
\end{theorem}
\begin{proof}
Proof of the result
\end{proof}
...

我想知道一种做法是否比另一种更好(对于间距/分页符/引用......)或者这是否只是一个品味问题。

提前致谢

相关内容