4

I am typing some mathematical expression related to 'displaystyle'. This is working well for $\displaystyle\sum_{i=1}^nx_i=1$. But it is not working in the following example :

\documentclass[10pt]{article}
\usepackage{amsmath}

\begin{document}
$P \displaystyle\simeq_p Q$
\end{document}

This gives :
enter image description here

But my desired output is :
enter image description here

Anyone can tell me what is the problem here ?

Martin Scharrer
  • 262,582
Soumitra Sen
  • 2,995

1 Answers1

8

Only limits on \mathop operators (like \sum) change in dispaystyle. Limits on relational infix operators stay in subscript position.

You could do

$P \displaystyle\mathrel{\mathop{\simeq}_p} Q$

To locally get mathop positioning and then make the construct a relation again.

David Carlisle
  • 757,742
  • 3
    @SoumitraSen thanks (you don't have to accept, but if you want to accept you need to click on the accept button to make the tick mark) – David Carlisle Apr 12 '13 at 14:32