I have a slide in my beamer presentation that looks like:
\documentclass{beamer}
\begin{document}
\begin{frame}
$$ y= 1/x \qquad \scriptscriptstyle {\mbox{For}~ x>0} $$
$$ y= 1/x \qquad \scriptscriptstyle {\mbox{For}}~ x>0 $$
$$ y= 1/x \qquad \mbox{For}~ \scriptscriptstyle {x>0} $$
\end{frame}
\end{document}
To save space, I want to reduce the size of $\mbox{For}~ x>0$ with \scriptscriptstyle but all the three ways of using this command give me the same result only $x>0$ is re-sized. Is the command \mbox the problem?
P.S. The protected space ~ is not anymore required when we replace \mbox by \text.
– emeryville Sep 28 '15 at 18:57