更改校样末尾符号的位置

更改校样末尾符号的位置

在我的论文中我使用了以下数学相关的软件包:

\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}

我想改变校样末尾小方块的位置。更确切地说,我想让它出现在校样的最后一个单词之后。

任何帮助都将不胜感激!

谢谢!

答案1

您可以使用\addtotheoremprefoothookthmtools 进行排版,\qedsymbol然后暂时禁用它。

\documentclass{article}

\usepackage{amsthm,thmtools}

\declaretheorem{theorem}

\addtotheoremprefoothook[proof]{%
  \qedsymbol%
  \renewcommand{\qedsymbol}{}%
  }

\begin{document}

\begin{theorem}
Theorem text
\end{theorem}

\begin{proof}
Proof text.
\end{proof}

\end{document}

证明

相关内容