1

How can I get something like this:

enter image description here

which was meant to be the symbol for the pullback by the morphisms $s$ and $t$.

It is meant to be used inline in math mode. It should be like x which we get by using \times.

My first effort was _{s} \times_t but there was much space between the $s$ and the \times.

Thanks.

cgnieder
  • 66,645
Dion
  • 696
  • Are there any limitations with this request? Do you want to use it in inline text and/or math, or just as a graphic? If you want inline usage, how would this affect the line-height? If used in inline math, will this be used in powers as well (and therefore need to size based on usage/location? Is the size of the cross the same as that of an X? Please be specific in your request. – Werner Apr 22 '16 at 12:44
  • I added some more info. – Dion Apr 22 '16 at 12:48

1 Answers1

3

With reference to Left and right subscript / superscript, I'd suggest

enter image description here

\documentclass{article}

\newcommand{\pullback}[2]{{}_{#1}\kern-\scriptspace{\times}_{#2}}

\begin{document}

See $\pullback{s}{t}$ and then some \ldots

\end{document}

Using {\times} removes the spacing around \times, thereby changing it from an operator to an ordinary symbol. Minor spacing adjustment around scripted symbols provides the desired layout.

Werner
  • 603,163