我想模拟包装proof
中的环境amsthm
。
我想要一些与环境具有相同布局(边距等)proof
但有以下变化的东西:
1)不要以证明。,我希望它首先证明大纲。
2)我不想在最后添加一个白框。
\documentclass{article}
\usepackage{amsthm}
\begin{document}
Here is introductory text.
\begin{proof}
Here is text in the proof.
\end{proof}
Here is concluding text.
\end{document}
答案1
您只需向环境本身添加一些可选命令即可完成此操作proof
。
\documentclass{article}
\usepackage{amsthm}
\newenvironment{proofoutline}
{\renewcommand\qedsymbol{}\proof[Proof outline]}
{\endproof}
\begin{document}
\begin{proofoutline}
This is not a proof.
\end{proofoutline}
\end{document}