I'd like to set $1024 \times 768$ without any space between the three items. Is this possible? If so, how?
E.g., what I get is:
1024 x 768
and what I want is:
1024x768
Math binary operators and relations automatically add appropriate spaces between the symbol and their operands. If you want to remove this space, you can turn the operator into a regular symbol by enclosing it in braces. For example
$1024 {\times} 768$ If you will be using this often you can also define a new command and say something like
\newcommand{\stimes}{{\times}} $1024 \stimes 768$ where \stimes is a symbol version of the \times operator.
These answers seem overly complicated to me. I personally just use \! between symbols as in:
$W \! \rightarrow \! \mu$ This brings the symbols closer together. You can also use multiple in a row
$W \! \! \! \rightarrow \! \mu$ Perhaps defining it as an ordinary math symbol might be better than just enclose it in braces and expect that would do it now and in the future. So, I would use \mathord:
$1024\mathord{\times}768$ \mathord is strictly unnecessary in TeX, since braces do the same thing. Unless you're planning on not using TeX in the future, I don't see why you would not expect it to work in the future. \mathord over that effect of braces which a reader perhaps might not recognize. Though you're right, this effect should not be changed in the future since subformulas should remain ordinary symbols. I just don't rely on side effects. It seems to me that what you really want is a multiplication sign that works in text mode. You can get this by writing $\times$ or, to answer your whole question 1024$\times$768.
By the way, nice question. This is a good example of where it makes sense not to use normal math typography.
x... that looks pretty sloppy.