I use the nath package to get automatically-sized delimiters, but it breaks having a \begin{array}{…}…\end{array} within a \frac{}{} (simply removing the \usepackage{nath} below fixes the example, but I need nath for other stuff).
\documentclass{article}
\usepackage{nath}
\begin{document}
\begin{equation}
\begin{array}{c}a\\b\\c\end{array}% This works
\frac{numerator}{denominator}% This works
% I want to put the array at the numerator's place
\frac{\begin{array}{c}a\\b\\c\end{array}}{denominator}% This fails
\end{equation}
\end{document}
I'm trying to do this to typeset some simple natural deduction proofs (one or several hypotheses followed by a horizontal line, then one or several conclusions), but packages like bussproofs.sty are clearly overkill (I don't need to typeset full proofs, just a single deduction rule). While \frac{}{} is semantically incorrect for this use, it is simple and gives the visual result I need.
Edit: The error message is ERROR: LaTeX Error: Environment ARRAY undefined.


$$...$$gives the result -- I am too old. – Marco Daniel Jun 17 '12 at 16:05$$...$$for there examples. However this isn't correct. – Marco Daniel Jun 17 '12 at 19:38$$is used in the documentation. I'm more concerned about usingnathin general: it takes too much for granted. For instance, a formula like the one on page 4 (A/B\otimes C/D) would rarely be written with full fractions in display mode, in my field. – egreg Jun 17 '12 at 19:44