如何输入定端同伦的符号?

发布于 2022-12-09 16:00:50

如何输入这个定端同伦的符号?
test.png

我试了以下代码

\documentclass[preview]{standalone}
\usepackage{unicode-math}
\usepackage{amsmath}

\begin{document}
    \(\underset{\cdot}{\simeq}\)
\end{document}

test1.png

但是,\simeq\cdot 的间距过大,怎么解决?

查看更多

关注者
0
被浏览
897
LaTeXStudio
LaTeXStudio 2022-12-09
这家伙很懒,什么也没写!

这种只能自己造轮子了。
看看下面的代码:

\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}

image.png

2 个回答
Swit
Swit 2022-12-09
LaTeX nubility!
\documentclass{article}
\usepackage{accents}

\newcommand{\simeqdot}{\mathrel{\underaccent{\cdot}{\mathord\simeq}}}

\begin{document}

$a\simeqdot b$

\end{document}

1.png

撰写答案

请登录后再发布答案,点击登录

发布
问题

分享
好友

手机
浏览

扫码手机浏览