I hope this question was not asked before. At least I haven't found it. I have an inline math equation and LaTeX is breaking it into two parts. In this case I'd prefer to have the whole and short equation in one line. Is there any way I can do that? I already tried to put it into a \mbox but that destroyed the whole layout. Here is an example:
\documentclass{minimal}
\usepackage{siunitx}
\begin{document}
A text with an inline equation which is broken in to two parts
but is not wanted right here $v_{initial} = \SI{1000}{m/s}$.
\end{document}
Here the result would be:
A text with an inline equation which is broken in to two parts but is not wanted right here v_{initial} =
1000m/s.

\hbox'ing the math? – Joseph Wright Feb 11 '11 at 17:13\mbox. You get an overfull box. – quinmars Feb 11 '11 at 17:41