LATEX 中有 `let` 量词吗?

LATEX 中有 `let` 量词吗?

LATEX 中有let量词吗?(看起来像\exists,但没有中间的棍子)

答案1

这是一个(不起眼的)使用的可能性tikz。但它无法抵御扩展

\documentclass{standalone}
\usepackage{tikz,amstext}
\newlength{\tempheight}
\newcommand{\Let}[0]{%
\mathbin{\text{\settoheight{\tempheight}{\mathstrut}\raisebox{0.5\pgflinewidth}{%
\tikz[baseline,line cap=round,line join=round] \draw (0,0) --++ (0.4em,0) --++ (0,1.5ex) --++ (-0.4em,0);%
}}}}
\begin{document}
$\Let\exists\alpha\beta\gamma$
\end{document} 

在此处输入图片描述

答案2

我在圣彼得堡国立大学学习期间用过这个标志,不知道其他地方是否也用这个标志。我搜索了几次,找到了一封旧的 FIDO 邮件,里面有 DIY 版本:

\documentclass{standalone}
\def\letus{%
    \mathord{\setbox0=\hbox{$\exists$}%
             \hbox{\kern 0.125\wd0%
                   \vbox to \ht0{%
                      \hrule width 0.75\wd0%
                      \vfill%
                      \hrule width 0.75\wd0}%
                   \vrule height \ht0%
                   \kern 0.125\wd0}%
           }%
}
\begin{document}
$\letus$
\end{document}

答案3

Unicode 中最接近的符号是 ⊐ (U+2290),即平方根。由于这是一个关系运算符,因此您需要将其间距更改为

\newcommand\letsymbol{\mathord{\sqsupset}}

它适用于许多包,包括unicode-math和。amssymblatexsym

相关内容