我有一篇論文,分別使用以下運算子進行加寬和縮小:
我如何為我自己的工作重新產生這些運算符?我想,我可以在\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}