需要高 QED 符号

需要高 QED 符号

我需要这个高大的 QED 符号。是的,需要。

高量子电动力学

这是一个 MWE,因为我的问题太短,不符合质量标准。

\documentclass{article}
\usepackage{amssymb}

\begin{document}

\noindent In view of the choice we made for the orientation of $\partial D$, we conclude that 
\[\int_{\partial \mathbf{D}} \iota^*\omega = 
(-1)^n \int_{\mathbb{R}^{n-1}} a_n(\cdot,\cdot, \dots, \cdot, 0).\]
This completes the proof of the theorem. $\square$

\end{document}

显然,正方形应该用高 QED 符号代替。谢谢。

答案1

在这里,我只是将\square垂直方向的缩放比例设为宽度的 1.5 倍,并将其命名为\tallqed\smash可防止其影响行距。 已编辑以减小尺寸。 请注意, 的第一个参数\scalebox是水平缩放,而第二个(可选)参数是垂直缩放。 这些可以根据需要进行调整。

\documentclass{article}
\usepackage{amssymb,graphicx}
\def\tallqed{\smash{\scalebox{.75}[1.125]{$\square$}}}
\begin{document}

\noindent In view of the choice we made for the orientation of $\partial D$, we conclude that 
\[\int_{\partial \mathbf{D}} \iota^*\omega = 
(-1)^n \int_{\mathbb{R}^{n-1}} a_n(\cdot,\cdot, \dots, \cdot, 0).\]
This completes the proof of the theorem. \tallqed
\end{document}

在此处输入图片描述

WChargin 正确地指出,符号拉伸使得框边框厚度在两侧与顶部/底部相比不一致。如果这是一个问题,可以通过稍微改变定义来解决问题,方法是将\ooalign两个拉伸的\squares 稍微调整一下字距。

\documentclass{article}
\usepackage{amssymb,graphicx}
\def\tallqedX{\smash{\scalebox{.75}[1.125]{$\square$}}}
\def\tallqed{\ooalign{\tallqedX\cr\kern.2pt\tallqedX}}
\begin{document}

\noindent In view of the choice we made for the orientation of $\partial D$, we conclude that 
\[\int_{\partial \mathbf{D}} \iota^*\omega = 
(-1)^n \int_{\mathbb{R}^{n-1}} a_n(\cdot,\cdot, \dots, \cdot, 0).\]
This completes the proof of the theorem. \tallqed
\end{document}

在此处输入图片描述

答案2

我会使用amsthm其自动\qed功能。但是如果您愿意,也可以\tallopenbox单独使用。

\documentclass{article}
\usepackage{amssymb,amsthm}

\newcommand{\tallopenbox}{\leavevmode
  \hbox to.4em{%
  \hfil\vrule
  \vbox to.8em{\hrule width.3em\vfil\hrule}%
  \vrule\hfil}}
\renewcommand{\qedsymbol}{\tallopenbox}


\begin{document}

\begin{proof}
In view of the choice we made for the orientation of $\partial D$, we conclude that
\[
\int_{\partial \mathbf{D}} \iota^*\omega =
(-1)^n \int_{\mathbb{R}^{n-1}} a_n(\cdot,\cdot, \dots, \cdot, 0).
\]
This completes the proof of the theorem.
\end{proof}

\end{document}

在此处输入图片描述

修改高度(此处0.8em)和宽度(此处0.4em);内宽(此处.3em)应比外宽略小。

答案3

作为缩放 的一个简单替代方法\square,考虑使用\framebox带有\phantom符号的:

\def\tallqed{\setlength{\fboxsep}{-\fboxrule}\framebox{\phantom{t}}}

您可以通过添加来定制框的厚度,例如,\setlength{\fboxrule}{.3pt}或者选择另一个幻影符号来调整框的大小。

答案4

STIX 字体定义数学符号\vrectangle

\documentclass{article}
\usepackage{stix}
\begin{document}

$\vrectangle$

\end{document}

在此处输入图片描述

相关内容