6

*enter image description here*

Is there any package with that symbol circled in orange in the photo? Thanks for answering.

  • What does this symbol mean? If it's that rare that Tex doesn't have it, it means Knuth never used it, so the rest of us don't know what it means either. Why do you want to use it? – D Duck Nov 17 '18 at 11:35
  • @DDuck That book is written in Tex so it must exist. We are using that symbol for Cartesian product of two semialgebras. – Peđa Pilipović Nov 18 '18 at 19:53
  • Did you look in http://tug.ctan.org/info/symbols/comprehensive/symbols-a4.pdf ? – D Duck Nov 18 '18 at 20:09

3 Answers3

9

Using \ooalign (one of my favorite toys) together with \mathpalette for properly scaling the symbol if in subscripts or superscripts. Note that the dot is properly centered, contrary to what the image shows.

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\newcommand{\timesdot}{\mathbin{\mathpalette\timesdot@\relax}}
\newcommand{\timesdot@}[2]{%
  \ooalign{$\m@th#1\times$\cr\hidewidth$\m@th#1.$\hidewidth\cr}%
}
\makeatother

\begin{document}

$\mathcal{I}\timesdot\mathcal{J}$

\end{document}

enter image description here

egreg
  • 1,121,712
6

With stackengine:

\documentclass{article}
\usepackage{amsfonts}
\usepackage{stackengine}
\newcommand\timesdot{\stackMath\mathbin{\stackinset{c}{0ex}{c}{-0.49ex}{\scriptscriptstyle.}{\times}}}

\begin{document}

$\mathcal I \timesdot \mathcal J$

\end{document} 

Bernard
  • 271,350
0

If larger space is also OK:

\documentclass{article}

\usepackage{graphicx}
\usepackage{mathabx}

\begin{document}

\rotatebox{180}{$\dottimes$}

\end{document}

enter image description here

daniel
  • 1