我有以下 MWE
\documentclass[11pt]{article}
\usepackage{empheq}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}
\begin{document}
\begin{subequations}
\begin{empheq}[box=\widefbox]{align}
a & = b \\
c & = d
\end{empheq}
\end{subequations}
\end{document}
我想在子方程之间插入一些可变大小的垂直空白,以使它们在框中看起来更美观。我该怎么做?
答案1
\documentclass[11pt]{article}
\usepackage{empheq}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}
\begin{document}
\begin{subequations}
\begin{empheq}[box=\widefbox]{align}
a & = b \\[2in]
c & = d
\end{empheq}
\end{subequations}
\end{document}