如何输入这个定端同伦的符号?
我试了以下代码
\documentclass[preview]{standalone}
\usepackage{unicode-math}
\usepackage{amsmath}
\begin{document}
\(\underset{\cdot}{\simeq}\)
\end{document}
但是,\simeq
和 \cdot
的间距过大,怎么解决?
这种只能自己造轮子了。
看看下面的代码:
\documentclass[preview]{standalone}
\usepackage{unicode-math}
\usepackage{amsmath}
\makeatletter
\newcommand{\simedot}{\mathbin{\mathpalette\simedot@\relax}}
\newcommand{\simedot@}[2]{%
\ooalign{$\m@th#1\simeq$\cr\hidewidth\raise-.1em\hbox{$\m@th#1.$}\hidewidth\cr}%
}
\makeatother
\begin{document}
\[A \simedot B\]
\end{document}
非常感谢!但是还有一个小小的问题,可以让下面的 dot 居中吗?