有没有办法在不使用环境 \begin{proof} 的情况下在证明末尾绘制小黑色方块?

有没有办法在不使用环境 \begin{proof} 的情况下在证明末尾绘制小黑色方块?

有没有办法在不使用环境的情况下在证明末尾绘制小黑方块\begin{proof}... \end{proof}

我知道有一种方法就是这个问题但我想知道是否可以将那个小黑方块放置在确定的位置,例如坐标系中的 (7,-8)?

如果是,该怎么做?

答案1

QED 符号可以放置在所需的位置,例如--

在此处输入图片描述

使用 tikz 节点,其位置相对于page.center(其中坐标必须根据(6,9)需要进行校准)指定:

\documentclass{report}
\usepackage{showframe}     % for this example
\usepackage{tikz}
\usetikzlibrary{calc}

\newcommand{\QED}[1]{\tikz[remember picture, overlay]\node 
                         at ($(current page.center) + (#1)$) 
                                         {\rule{7pt}{7pt}};}

\begin{document}
 \textit{Proof.} Proof of simple theorems are 
                            quite easily done. \QED{6,9}

 \QED{0,0} \QED{-6,6}
\end{document}

答案2

像这样?

在此处输入图片描述

(您可以使用任何其他符号作为 QED 符号;以使其正确使用\hfill

\documentclass{report}
\usepackage{showframe} % for this example
\usepackage[nopar]{lipsum} % for this example
\usepackage{amsthm}
\renewcommand{\qedsymbol}{\rule{7pt}{7pt}}
\begin{document}
\noindent\textit{Proof.} \lipsum[1]\hfill\qedsymbol
\end{document}

相关内容