7

How can the first { and last } in the following be made larger?

  $A =\left \{a \notin\{1, 2\}, \ b\notin \{4,5\}\right\}$.
user12290
  • 3,341

1 Answers1

16

There are several ways to increase the height of the braces:

  1. Use a \vphantom{} inside the \left\{ and \right\} so that the content appears to have greater height causing the size of the braces to increase:

    $B =\left\{ \vphantom{y^2} a \notin \{1, 2\} \right\}$
    
  2. Specify a fixed size of the brace (as cmhughes sugested):

    $C =\big\{ \vphantom{y^2} a \notin \{1, 2\} \big\}$
    
  3. Or use automatic growth for nested parenthesis as per automatic size adjustment for nested parentheses:

    \setlength\delimitershortfall{-2pt}
    $D =\left\{ a \notin \{1, 2\}  \right\}$
    

References:

Fixed Size:

Automatic Re-size:


enter image description here

Code:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
$A =\left\{ \{1, 2\} \right\}$,
$B =\left\{ \vphantom{y^2} \{1, 2\} \right\}$,
$C =\big\{ \{1, 2\} \big\}$,
\setlength\delimitershortfall{-2pt}
$D =\left\{ \{1, 2\}  \right\}$.
\end{document}
Peter Grill
  • 223,288
  • \rule{0pt}{<height>} could be considered as a way to manually control de the height of the braces, right? Like $A =\left\{ \rule{0pt}{9pt} \{1, 2\} \right\}$, – Leone Aug 04 '21 at 21:04