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.


