0

I want to have larger brackets on the outside and smaller brackets on the inside in something like this:

S(T(z))

which is usually achieved by S\left(T(z)\right)

However, I am also in the align environment and when I try and type set it as above, an error shows up. Is it not possible? WHat is a workaround?

Display Name
  • 46,933
user71207
  • 545
  • 1
    Is the example in the beginning/middle of page 29 in https://ftp.acc.umu.se/mirror/CTAN/macros/latex/contrib/mathtools/mathtools.pdf what you look for? – mickep Mar 07 '22 at 12:09

1 Answers1

1

Use the bigl and bigr construct instead. My guess is that your left and right were not on the same line.

\documentclass[12pt]{article}
    \usepackage[a4paper]{geometry}
    \usepackage{amsmath}
\begin{document}
\begin{align}
Q = \bigl(&T(z) + q +\\
    &A(w) \bigr)
\end{align}
\end{document} 

enter image description here

Denis
  • 5,267