I am wondering if there is a way to modify the way left and right delimiters in LaTeX handle vertical spacing. This tends to come up when they are enclosing a fraction that has a big numerator but a small denominator. I have posted a (made up) example, but it illustrates the issue I am running into - there is a lot of extra vertical space at the bottom of the expression, and I'm wondering if there is a way to get rid of it.
Many thanks. Self-contained short LaTeX article using amsmath package below.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
When this expression is included in the text, $\left\vert\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}\right\vert$, the absolute value signs treat the denominator as if it were the same size as the numerator, even though it is much smaller. The fraction bar is centred about at the middle of the line of the text. In this expression, $\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}$, the centring is the same; the fraction bar is about in line with the middle of the text. However, the vertical spacing before the next line of text is much smaller.
The same phenomenon occurs in displayed equations.
\begin{equation*}
\left\vert\begin{bmatrix}a&b\\c&d\end{bmatrix}^{-1}\right\vert=\left\vert\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}\right\vert
\end{equation*}
Note the spacing below this equation and the following text. Contrast with the following example,
\begin{equation*}
\begin{bmatrix}a&b\\c&d\end{bmatrix}^{-1}=\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}
\end{equation*}
where the text is much closer to the denominator of the fraction. The same effect does not happen in the next example,
\begin{equation*}
\left.\begin{bmatrix}a&b\\c&d\end{bmatrix}^{-1}\right.=\left.\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}\right.
\end{equation*}
in which the expressions have been surrounded by invisible left and right delimiters. It does happen in the next example,
\begin{equation*}
\left(\begin{bmatrix}a&b\\c&d\end{bmatrix}^{-1}\right)=\left(\frac{\begin{bmatrix}\phantom{-}d&-b\\-c&\phantom{-}a\end{bmatrix}}{a d-b c}\right)
\end{equation*}
which uses parentheses instead of absolute values.
\end{document}

Let me try it this way.
[code] \documentclass{article}
\usepackage{amsmath}
\begin{document} We establish the inequality \begin{equation} \left\vert\frac{\begin{gathered}\text{An extended}\\text{multiple line}\\text{expression}\\text{which is spread}\\text{out using}\\text{the
– Bob Aug 11 '11 at 09:06gathered'' or}\\\text{\text{aligned'' environments}}\end{gathered}}{x}\right\vert\leq\sqrt{\pi} \end{equation} for no particular reason. \end{document} [/code]\usepackage{amsmath}
\begin{document} We establish the inequality \begin{equation} \left\vert\frac{\begin{gathered}\text{An extended}\\text{multiple line}\\text{expression}\\text{which is spread}\\text{out using}\\text{the
– Bob Aug 11 '11 at 09:21gathered'' or}\\\text{\text{aligned'' environments}}\end{gathered}}{x}\right\vert\leq\sqrt{\pi} \end{equation} for no particular reason. \end{document} `:), I see you got it working. They pretty much work the same, its just that in comments you cannot really do line breaks so your code looks crunched together like above, but typically you can use 4 spaces of indentation to each line of code to create a block of code, and you can use tick marks for short burst or single line codes. – night owl Aug 11 '11 at 09:39