
When using displayed (in contrast to inline) equations LaTeX center-aligns subscripts:
\Pr\limits_{{r \leftarrow_R \{0,1\}^n}} [ ... ]
However, I like them to be left aligned. This can be done by using \hspace
\Pr\limits_{\hspace{1cm}{r \leftarrow_R \{0,1\}^n}} [ ... ]
But this is not a good solution, since the parameter of \hspace must be specified manually. (It differs based on the font and the length of the subscript.)
What other option I have?