How can the first { and last } in the following be made larger?
$A =\left \{a \notin\{1, 2\}, \ b\notin \{4,5\}\right\}$.
How can the first { and last } in the following be made larger?
$A =\left \{a \notin\{1, 2\}, \ b\notin \{4,5\}\right\}$.
There are several ways to increase the height of the braces:
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\}$
Specify a fixed size of the brace (as cmhughes sugested):
$C =\big\{ \vphantom{y^2} a \notin \{1, 2\} \big\}$
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\}$
Fixed Size:
Automatic Re-size:

\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}
\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
\bigor similar- have a look at theNot so short guide to LaTeX– cmhughes Nov 19 '12 at 05:01