(深い)項目化の下のボックス整列方程式

(深い)項目化の下のボックス整列方程式
\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}

ボックスのサイズが誤っており、方程式本体全体がボックス化されません。

答え1

方程式は、方程式番号を考慮せずに、現在の itemize 環境の左余白とページの右余白を基準にして中央に配置されます。回避策としては、環境\hphantom{tag}の右側に追加することが考えられますempheq。また、項目番号を環境の最初の行と垂直に揃えることもできましたalign

\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} 

ここに画像の説明を入力してください

関連情報