Math & ScienceDo you always prefer autosized brackets?

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
CaptainProton
Posts: 15
Joined: Fri Dec 18, 2009 10:54 pm

Do you always prefer autosized brackets?

Post by CaptainProton »

This is not so much a technical question but more a typographic one: Do you always use \left( and \right) instead of just ()? Or are there exceptions when smaller brackets are preferable?

For example using the autosized brackets in the following example looks pretty strange or is it just me?

Code: Select all

\documentclass{scrreprt}
\usepackage{amsmath}
\begin{document}
  \begin{align}
    f\left(x^\dag\right) = x^\dag\\
    f(x^\dag) = x^\dag
  \end{align}
\end{document}
Are there any rules of thumb?
Last edited by CaptainProton on Sat Jul 17, 2010 10:13 pm, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Do you always prefer autosized brackets?

Post by localghost »

You are right. It is not always desirable to have automatically scaled delimiters. Another extreme example is a sum sign with only limits above or below. But there are several (TeX) commands for manual adjustment. See the code below for comparison.

Code: Select all

\documentclass{scrreprt}
\usepackage{amsmath}

\begin{document}
  \begin{align}
    f\left(x^\dag\right) = x^\dag \\
    f\bigl(x^\dag\bigr) = x^\dag \\
    f(x^\dag) = x^\dag
  \end{align}
\end{document}
There are several similar commands. See the »Math mode« document for further details.


Thorsten
CaptainProton
Posts: 15
Joined: Fri Dec 18, 2009 10:54 pm

Do you always prefer autosized brackets?

Post by CaptainProton »

localghost wrote:But there are several (TeX) commands for manual adjustment. See the code below for comparison. [...]
Thank you very much, it works!
Post Reply