Text FormattingSpace between closing Parenthesis and Exponent

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
niles
Posts: 92
Joined: Mon Dec 01, 2008 9:35 pm

Space between closing Parenthesis and Exponent

Post by niles »

Hi

Please see my MWE:

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[sc]{mathpazo}

\begin{document}
  \[
    F = \frac{1}{\left({1+2s_0+\frac{4\delta^2}{\Gamma^2}}\right)^2}
  \]
\end{document}
I am not truly satisfied with the white space between the superscript "2" and the closing parenthesis. I tried using \biggl( and \biggr) instead, but it didn't make it better. Is there anything I can do about this?


Best,
Niles.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Space between closing Parenthesis and Exponent

Post by Stefan Kottwitz »

Hi Niles,

a quick fix, just at that place, would be

Code: Select all

...\right)^{\!2}
inserting a small negative space. You could even double it.

Stefan
LaTeX.org admin
Post Reply