我有一篇论文分别使用以下运算符进行扩大和缩小:
我怎样才能在自己的工作中重现这些运算符?我猜,我可以在\sqcup
和内画一条水平线\sqcap
,但怎么做呢?
或者,你知道有哪个包提供这些操作符吗?我试过了http://detexify.kirelabs.org/并搜索了互联网,但没有找到。
答案1
这是一个适用于各种数学风格的版本。已编辑,以保持与原始元素相同的垂直高度
\documentclass{article}
\usepackage{scalerel}
\def\widen{\mathrel{\ThisStyle{\stretchrel*{\ooalign{%
\raise0.2\LMex\hbox{$\SavedStyle\sqcup$}\cr%
\raise-0.2\LMex\hbox{$\SavedStyle\sqcup$}}}{\sqcup}}}}
\def\narrow{\mathrel{\ThisStyle{\stretchrel*{\ooalign{%
\raise0.2\LMex\hbox{$\SavedStyle\sqcap$}\cr%
\raise-0.2\LMex\hbox{$\SavedStyle\sqcap$}}}{\sqcap}}}}
\begin{document}
$a \widen b \quad\scriptstyle a \widen b \quad\scriptscriptstyle a \widen b$
$a \narrow b \quad\scriptstyle a \narrow b \quad\scriptscriptstyle a \narrow b$
\end{document}