[Tex/LaTex] How to display sine squared more compactly

formatting

If I have:

\sin ^2(\theta )

My output is:

enter image description here

This output just have too much space between the power and the parenthesis. How could I change this?

Best Answer

I can reproduce your picture only if I add \left and \right in front of the parentheses.

So just don't use them.

\documentclass{article}
\begin{document}
$\sin^{2}\theta$

$\sin^{2}(\theta)$

$\sin^{2}\left(\theta\right)$
\end{document}

By the way, without parentheses it's even better.

enter image description here

Related Question