I would like to know how to type the symbol of Kulkarni-Nomizu product in LaTeX:
I tried to use Detexify, but it does not give me anything.
I would like to know how to type the symbol of Kulkarni-Nomizu product in LaTeX:
I tried to use Detexify, but it does not give me anything.
You can combine \bigcirc with \wedge.
Of course, you can also create and use a new command. The result is, obviously, the same with or without the new command.
Edit:
However, with \mspace the symbol becomes misaligned when used in \scriptstyle or - worse - in \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}
See the output:
k was too close to the symbol!
– CarLaTeX
Mar 16 '17 at 07:27
\wedge is 12mu wide, so if you back up by 15mu, you have to compensate with 3mu, which is what \, does in math mode; however, I'd use explicitly \mspace{3mu} for consistency.
– egreg
Mar 16 '17 at 07:56
A solution with \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}
\scriptstyle or - worse - in \scriptscriptstyle. See the edited version of my answer.
– CarLaTeX
Mar 24 '17 at 06:08
\owedgein thestmaryrdfonts. – Andrew Swann Mar 16 '17 at 07:28