答案1
请尝试以下解决方案之一:
\documentclass{article}
\usepackage{mathtools}
\newcommand\sleq{\mathrel{{}^*\!{\leq}}}
\newcommand\ssleq{\mathrel{\prescript{*}{}\!{\leq}}}
\newcommand\pst[1]{{}^{*\mkern-1.5mu}#1}
\newcommand\psst[1]{\prescript{*\mkern-1.5mu}{}#1}
\begin{document}
\[ a \sleq b, \quad A\in\pst{V}\]%
\[ a \ssleq b, \quad A\in\psst{V} \]%
\end{document}
答案2
您可以设置一个宏\xtnd
来“扩展”符号,方法是在符号前加上一个凸起的星号。“扩展”符号的默认“数学类型”设置为“mathrel”。如果这不合适,请提供可选参数,例如ord
或bin
分别将新创建的符号的数学类型设置为“mathord”和“mathbin”。
\documentclass{article}
\usepackage{amsmath} % for "align*" env.
\newcommand\ext[2][rel]{\csname math#1\endcsname{{{}^*}\mkern-1.5mu{#2}}}
\begin{document}
\begin{align*}
&a \ext{\le} b\\ % "\le" is of type "mathrel"
&A \in \ext[ord]{V}\\ % letter "V" is of type mathord
&A \in \ext[ord]{\mkern-5mu A} % "A" needs more neg. kerning than "V" does
\end{align*}
\end{document}