如何在 LaTeX 中的数学公式末尾放置 \blacksquare?

如何在 LaTeX 中的数学公式末尾放置 \blacksquare?

在涉及数学方程式的解决方案结束时,我喜欢将 \blacksquare 放在方程式的右角。我不知道该怎么做。我附上了代码。请帮助我 - 谢谢!

Thus, the system transfer function is given by
 $$
 G(s) = {X(s) \over U(s)} = {5 \over s^2 + 2 s + 3}   \blacksquare
 $$

答案1

有几种可能的包。例如 ntheorem。

\documentclass{article}
\usepackage{amsfonts,amsmath,amssymb}
\usepackage[thmmarks]{ntheorem}
{%
\theorembodyfont{\small}
\theoremsymbol{$\square$}
\newtheorem*{Proof}{A label you want}
}
\begin{document}
\begin{Proof}

  $G(s) = {X(s) \over U(s)} = {5 \over s^2 + 2 s + 3}$
\end{Proof}
\end{document}

在此处输入图片描述

答案2

现在阿替芬为此包。

\documentclass{article}
\usepackage{atendofenv}
\usepackage{amssymb}
\AtEndOfEnv{equation}{$\square$}

\begin{document}

 \begin{equation}
 G(s) = {X(s) \over U(s)} = {5 \over s^2 + 2 s + 3}
 \end{equation}

\end{document}

在此处输入图片描述

相关内容