10

I've searched the usual places (http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf, http://ctan.math.utah.edu/ctan/tex-archive/macros/latex/contrib/unicode-math/unimath-symbols.pdf, DeTeXify) and can't seem to find this character, which surprises me. I'd like a combination of \oplus and \otimes. More precisely, I'd like a circle subdivided into eight 45° sectors. (Sort of like \circledast but with the arms of the asterisk extending all the way out to the edge of the circle.)

Does such a symbol exist? If not, how can I create one?

mweiss
  • 281

2 Answers2

10

Easy \ooalign. ;-) See \subseteq + \circ as a single symbol ("open subset") for a quick course on it.

\documentclass{article}

\makeatletter
\DeclareRobustCommand{\oplustimes}{%
  \mathbin{\mathpalette\o@plus@times\relax}%
}
\newcommand{\o@plus@times}[2]{%
  \ooalign{$\m@th#1\oplus$\cr$\m@th#1\otimes$\cr}%
}
\makeatother

\begin{document}

$X\oplustimes Y_{a\oplustimes b}$

\end{document}

enter image description here

egreg
  • 1,121,712
8

@Egreg did a great job reinventing the wheel ;-). An alternative:

\documentclass{article}

\usepackage{linearb}

\newcommand{\ugh}{\mathbin{\textlinb{\BPwheel}}}
\newcommand{\sugh}{\mathbin{\textlinb{\scriptsize\BPwheel}}}

\begin{document}

$X \ugh Y_{a \sugh b}$

\end{document}
JPi
  • 13,595