Ecuación alineada con cuadros bajo desglose (profundo)

Ecuación alineada con cuadros bajo desglose (profundo)
\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{empheq}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}

\begin{itemize}
\item[1.] zz
\begin{itemize}
\item[1.1]

\begin{subequations}
\begin{empheq}[box=\widefbox]{align}
x \;&=\; x_1 = x_2 = x_3 = x_4 = x_5 = x_6 = 0 \\
y \;&=\; y_1 = y_2 = y_3 = y_4 = y_5 = y_6 = 0 
\end{empheq}
\end{subequations}

\item[1.2]
\end{itemize}
\item[2.]
\end{itemize}
\end{document}

El cuadro tendrá un tamaño incorrecto y no encuadrará todo el cuerpo de las ecuaciones.

Respuesta1

Las ecuaciones están centradas con respecto al margen izquierdo del entorno de desglose actual y al margen derecho de la página, sin tener en cuenta el número de ecuación. Una solución alternativa podría ser contribuir \hphantom{tag}al derecho del empheqmedio ambiente. También logré alinear verticalmente el número de artículo con la primera línea del alignentorno:

\documentclass[a4paper]{article}
\usepackage{empheq}
\usepackage{amssymb}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}

\begin{document}

\begin{itemize}
  \item[1.] zz
        \begin{itemize}%[leftmargin = *]
          \item[1.1]
                \leavevmode\vspace{\dimexpr-\baselineskip-\abovedisplayshortskip}
                \begin{subequations}
                  \begin{empheq}[box=\widefbox, right = \hphantom{2a}]{align}
                    x \;&=\; x_1 = x_2 = x_3 = x_4 = x_5 = x_6 = 0 \\
                    y \;&=\; y_1 = y_2 = y_3 = y_4 = y_5 = y_6 = 0
                  \end{empheq}
                \end{subequations}
                \noindent Text text text text text text text text text text text text text text text text text text text text text text text text text
          \item[1.2]
        \end{itemize}
  \item[2.]
\end{itemize}

\end{document} 

ingrese la descripción de la imagen aquí

información relacionada