如何在二元运算符的左上方放置一个点?
我知道要在二元运算符上方放置一个点,我可以这样做:
\dot{\sqsubseteq}
但这会将点恰好放置在操作员的中心上方。
我尝试了这个(在黑暗中刺杀!):
\ldot {\sqsubseteq}
我认为它可能意味着“左上角的点”,但它不起作用。
答案1
这也许能满足您的需要。
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\newcommand\ldot[1]{\mathpalette\@ldot{#1}}
\newcommand\@ldot[2]{%
\binrel@{#2}\binrel@@{%
\ooalign{%
$\m@th#1#2$\cr
$\m@th#1\dot{\vphantom{#1#2}}$\hidewidth\cr
}%
}%
}
\makeatother
\begin{document}
\[a \ldot{\subseteq} b\]
\end{document}