evitar que la etiqueta debajo de un soporte ocupe espacio vertical

evitar que la etiqueta debajo de un soporte ocupe espacio vertical
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{multline*}
= I_{B}(\Pi_{B})_{\theta}[\theta_{B},\Lambda^{\prime}[I_{0} - I_{B}[1-F(\theta_{B})]]] - I_{B}\Pi_{B}[\theta_{B},\Lambda^{\prime}[I_{0} - I_{B}[1- F(\theta_{B})]]] \times \cdots \\ \\
\cdots \times \frac{\left[ \everymath{\displaystyle}\setlength{\arraycolsep}{1.5pt} \begin{array}{l} (\Delta_{B})_{\theta}[\theta_{B},\Lambda^{\prime}[I_{0}-I_{B}[1-F(\theta_{B})]]] + f(\theta_{B}) \times \dots \hspace{0.75em} \\ \\
\multicolumn{1}{r}{\hspace{0.9em} \cdots\times [I_{0} - I_{B}[1-F(\theta_{B})]]\Lambda^{\prime\prime}[I_{0} - I_{B}[1-F(\theta_{B})]]}   \end{array} \right] }   {\left[\underbrace{\everymath{\displaystyle}\setlength{\arraycolsep}{1.5pt}    \begin{array}{l}
\Delta_{B}[\theta_{B},\Lambda^{\prime}[I_{0}-I_{B}[1-F(\theta_{B})]]] - [1- F(\theta_{B})]\times \cdots \\ \\
\multicolumn{1}{r}{\cdots\times[I_{0} - I_{B}[1-F(\theta_{B})]]\Lambda^{\prime\prime}[I_{0} - I_{B}[1-F(\theta_{B})]]}
\end{array}}_{<0 \text{ (see appendix)}} \right]} \leq 0,
\end{multline*}   
\end{document}

¿Cómo puedo evitar < 0 \text{ (see appendix)}que la etiqueta ocupe espacio vertical cuando LaTeX formatea los corchetes? He estado jugando con \smash, pero hasta ahora no he tenido suerte.

Respuesta1

Una idea sería omitir los corchetes en la fracción. Otra es reforzar toda la matriz, pretendiendo que es más pequeña de lo que realmente es:

\documentclass[12pt]{article}
\usepackage{amsmath}

\begin{document}

\begin{multline*}
= I_{B}(\Pi_{B})_{\theta}[\theta_{B},\Lambda'[I_{0} - I_{B}[1-F(\theta_{B})]]] 
  - I_{B}\Pi_{B}[\theta_{B},\Lambda'[I_{0} - I_{B}[1- F(\theta_{B})]]] \times {}
\\[1ex]
{} \times 
  \frac{
    \begin{bmatrix}
    (\Delta_{B})_{\theta}[\theta_{B},\Lambda'[I_{0}-I_{B}[1-F(\theta_{B})]]]
     + f(\theta_{B}) \times {}\qquad \hfill
    \\[1ex]
    \hfill\qquad{}\times [I_{0} - I_{B}[1-F(\theta_{B})]]\Lambda''[I_{0} - I_{B}[1-F(\theta_{B})]]
    \end{bmatrix}
  }{
    \mspace{12mu}
    \underbrace{
      \mspace{-12mu}\begin{bmatrix}
      \Delta_{B}[\theta_{B},\Lambda'[I_{0}-I_{B}[1-F(\theta_{B})]]]
        - [1- F(\theta_{B})]\times {}\qquad\hfill
      \\[1ex]
      \hfill\qquad{}\times[I_{0} - I_{B}[1-F(\theta_{B})]]\Lambda''[I_{0} - I_{B}[1-F(\theta_{B})]]
      \end{bmatrix}\mspace{-12mu}
    }_{<0 \text{ (see appendix)}}
    \mspace{12mu}
  } \leq 0,
\end{multline*}   

\end{document}

Hice algunas simplificaciones (por ejemplo, 'y ''en lugar de ^{\prime}y ^{\prime\prime}. También eliminé los puntos que nunca se usan para indicar una operación "suspendida", sino términos omitidos).

ingrese la descripción de la imagen aquí

Respuesta2

Basado en la idea de @egreg, pero con uso splitfracde mathtoolsen su lugar bmatrix. Para que el código sea más breve, elimino las llaves alrededor de los índices.

\documentclass[12pt]{article}
    \usepackage{mathtools}
\usepackage[active,displaymath,tightpage]{preview}
\setlength\PreviewBorder{5pt}%

\begin{document}
    \begin{multline*}
= I_{B}(\Pi_{B})_{\theta}[\theta_{B},\Lambda'[I_{0} - I_{B}[1-F(\theta_{B})]]]
  - I_{B}\Pi_{B}[\theta_{B},\Lambda'[I_{0} - I_{B}[1- F(\theta_{B})]]]              \\[1ex]
%
\times\frac{\left[
\splitfrac{(\Delta_B)_\theta[\theta_B,\Lambda'[I_0-I_B[1-F(\theta_B)]]] + f(\theta_B)}
          {\times [I_0 - I_{B}[1-F(\theta_B)]]\Lambda''[I_0 - I_B[1-F(\theta_B)]]}\right]
            }{\underbrace{\mspace{-12mu}\left[
\splitfrac{\Delta_B[\theta_B,\Lambda'[I_{0}-I_B[1-F(\theta_B)]]] - [1- F(\theta_B)]}
          {\times[I_0 - I_B[1-F(\theta_B)]]\Lambda''[I_0 - I_B[1-F(\theta_B)]]}\right]\mspace{-12mu}
                          }_{<0 \text{ (see appendix)}}
             } \leq 0,
    \end{multline*}
\end{document} 

ingrese la descripción de la imagen aquí

información relacionada