答案1
您可以\bigcirc
与结合\wedge
。
当然,你也可以创建一个新的命令并使用。显然,有没有新命令,结果都是一样的。
编辑:
然而,\mspace
在 中使用时,符号会错位,\scriptstyle
或者更糟糕的是 - 在 中\scriptscriptstyle
。
\documentclass{article}
\usepackage{amsmath, amssymb}
% Of course, you can create...
\newcommand{\KN}{\mathbin{\bigcirc\mspace{-15mu}\wedge\mspace{3mu}}}
\begin{document}
\[
h \mathbin{\bigcirc\mspace{-15mu}\wedge\mspace{3mu}} k
\]
% ... and use a new command:
\[
h \KN k
\]
\[
x_{h \KN k}
\]
\[
y_{x_{h \KN k}}
\]
\end{document}
查看输出:
答案2
一个解决方案\ooalign
。
\documentclass{article}
\makeatletter
\newcommand*\owedge{\mathpalette\@owedge\relax}
\newcommand*\@owedge[1]{%
\mathbin{%
\ooalign{%
$#1\m@th\bigcirc$\cr
\hidewidth$#1\m@th\wedge$\hidewidth\cr
}%
}%
}
\makeatother
\begin{document}
$h \owedge k_{h \owedge k_{h \owedge k}}$
\end{document}