证明环境中存在错误?

证明环境中存在错误?

我试图给学生一个空白处来进行证明。因此,它应该以单词开头,Proof然后是空白处,然后是空白处底部的小方块。当我指定空白处(在下面的示例中为 1cm)时,Proof和 qed 符号会放在同一行上,并且我会在此行之前或之后得到空白处。为什么会proof这样?

\documentclass{article}

\usepackage{amsthm}

\begin{document}
Regular proof environment with space
\begin{proof}
  \vspace{1cm}
\end{proof}
The same but starting with tilde
\begin{proof}
  ~\vspace{1cm}
\end{proof}
Some text after the proof  
\end{document}

在此处输入图片描述

答案1

正如 @barbara 提到的,我也认为证明环境实际上是一个列表,您需要设置列表条目(请查看如何在证明环境中添加空白区域

因此,您可以使用“占位符”或空框,然后在该段落后调用vspace

\documentclass{article}
\usepackage{amsthm}

\begin{document}

Prove that...
    \begin{proof}
        \mbox{}\par
        \vspace{3cm}
    \end{proof}

\end{document}

在此处输入图片描述

相关内容