Delimeter not extending enough in relation to the denominator of a major fraction containing itself an extensible delimeter and a minor fraction

bracketsfractionsnesting

I have the following MWE:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{align}
  A1 &= \left\{\frac{1}{2\omega} \right. \\
     & \enspace \left. \left[\frac{z_{v}^2}{\left(\omega + \frac{z_{v}^2}{\omega}\right) t_{v}\left(z_{v}\right)}\right]\right\} \\
  A2 &= ...\\
\end{align}

\end{document}

Now, the problem is that the rectangular brackets do not completely surround the larger inner curvy brackets in the major fraction denominator (themselves containing a minor fraction). Similarly, the outer curly brackets do not completely surround the rectangular brackets surrounding the major fraction. Is there a relatively straightforward way to automatically extend those rectangular brackets to surround the larger curvy brackets in the major fraction denominator and to extend the curly brackets just enough to surround the rectangular brackets?

I tried to use the usual \bigl\bigr, \biggl\biggr, \Bigl\Bigr, and \Biggl\Biggr combinations, but they are not large enough. I also tried to use vphantom, but that is too ad-hoc for my taste. I was looking for something cleaner. In principle, the \left\right combination should work. Maybe that \frac command is preventing the left rectangular delimeter from gaining access to the extended delimeters in the major fraction denominator. Not sure. If there is no \left\right-based solution available, I might need to set \vastl\vastr and \Vastl\Vastr commands as in this example: mathtools brackets larger than \Bigg but, if possible, I want to avoid that and stick to a \left\right-based solution. The \left(\rule{0cm}{2cm}\right. approach could be an option, but I have equations with brackets opening in one line and closing in another. Not sure how to break sets of brackets across lines with \left(\rule{0cm}{2cm}\right.. Any help would be very welcome!

enter image description here

UPDATE:
@Mico/@Werner: I just extended the original MWE to a multiline equation with a shorter major fraction (and a shorter left rectangular bracket) on the first line and a taller major fraction (and a taller right rectangular bracket) on the second line, whereby said equation is part of several within the broader align and split environments I use. I can of course use fixed size brackets like \Biggl\Biggr, but they cannot adequately surround the inner curvy brackets surrounding the minor fraction in the denominator of the major fraction in the second line. That is the actual problem!

Best Answer

Some comments regarding your setup:

  • Think about using some space to spread out your constructions so it's easier to see the grouping of elements.
  • Use Left/Right across multi-line equation to spread a large construction across a multi-line equation structure. For this, the suggested solution is to use a \vphantom to spread the brackets in locations it doesn't have sufficient height.
  • Superficial stretching of \left/\right delimiters can be achieved with a strut - \rule[<height/depth>]{0pt}{0pt}.

enter image description here

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{align}
  A1 &= \left\{ 
          \vphantom{
            \left[
              \frac
                {z_v^2}
                {\rule[-10pt]{0pt}{0pt}
                  \left(\omega + \frac{z_v^2}{\omega}\right) t_v (z_v)}
            \right]
          }
          \dfrac{1}{2 \omega} 
        \right. \\
     & \qquad 
        \left.
          \left[
            \frac
              {z_v^2}
              {\rule[-10pt]{0pt}{0pt}
                \left(\omega + \frac{z_v^2}{\omega}\right) t_v (z_v)}
          \right]
        \right\} \\
  A2 &= \ldots
\end{align}

\end{document}
Related Question