I am attempting to set a box around multiline equations is LaTeX using the following code:
\documentclass{article}
\usepackage{empheq}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}
\begin{document}
\begin{subequations}
\begin{empheq}[box=\widefbox]{align}
z &= a + b + c + d + e + f + g + h + i + j + k \\
&\qquad\qquad + l + m + n + o + p + q + r + s \\
&\qquad\qquad + t + u + v + w + x + y
\end{empheq}
\end{subequations}
\end{document}
The problem is that the equations are automatically labelled (1a), (1b), and (1c). Since this is only one equation, how can I label the whole box simply as (1)?

alignis defined byamsmath, which you don't mention. you can usesplitinstead ofalignto get only one equation number. also, i'm not sure why you needsubequationssince there's only one. – barbara beeton Oct 10 '13 at 16:39subequations(see http://tex.stackexchange.com/questions/109900/how-can-i-box-multiple-aligned-equations). – Doubt Oct 10 '13 at 18:03empheqpackage loads theamsmathpackage (and itssubequationsandalignenvironments). – Mico Oct 10 '13 at 18:21empheqenough to know that. thanks. – barbara beeton Oct 10 '13 at 19:14