latex中使用proof证明时如何去掉QED(结尾的方括号)

原文在here

举例说明吧

例1,

\documentclass{article}
\usepackage{amsthm}
\begin{document}
\begin{proof}
This has the QED symbol.
\end{proof}
\begin{proof}\renewcommand{\qedsymbol}{}
This hasn't.
\end{proof}
\begin{proof}
And this has it again.
\end{proof}
\end{document}

输出结果

latex中使用proof证明时如何去掉QED(结尾的方括号)_第1张图片

例2:if you're using amsthm, you can do this:

\documentclass{article}
\usepackage{amsthm}
\begin{document}
\begin{proof}
This has the QED symbol.
\end{proof}
\begin{proof}\let\qed\relax
This hasn't.
\end{proof}
\begin{proof}
And this has it again.
\end{proof}
\end{document}
注意红色部分



你可能感兴趣的:(LaTeX)