如何對對齊方程式進行裝箱

如何對對齊方程式進行裝箱
\boxed{
\begin{align*}
x &= 1 \\
y &= 1
\end{align*}
}

顯然不起作用/編譯..

\begin{framed}
\begin{align*}
x &= 1 \\
y &= 1
\end{align*}
\end{framed}

有點工作,但它看起來會很難看,因為盒子不必要地大。

答案1

使用大槌三重奏:amsmathempheqtcolorbox

\documentclass[14pt,a4paper,headlines=6,headinclude=true]{scrartcl}
\usepackage{empheq}
\usepackage[theorems,skins]{tcolorbox}

\newtcbox{\mybox}[1][]{nobeforeafter,math upper,tcbox raise base,
enhanced jigsaw,arc=0pt,boxrule=0.5pt,boxsep=0pt,left=2pt,right=2pt,top=2pt,bottom=2pt,colback=white,colframe=black,
#1}

\begin{document}
\begin{empheq}[box=\mybox]{align*}
    x &= 1 \\
    y &= 1
\end{empheq}
\end{document}

在此輸入影像描述

適當調整leftright,它們是框的邊距。

答案2

Try this:
\documentclass{article}
\usepackage{empheq}
\newcommand\exactfbox[1]{\fbox{\hskip1em#1\hskip1em}}
\begin{document}
\begin{empheq}[box=\exactfbox]{align*}
 x &= 1 \\
 y &= 1
\end{empheq}
\end{document}

在此輸入影像描述

相關內容