小框只是围绕着方程式,而不是整条线?

小框只是围绕着方程式,而不是整条线?

下面的例子创建了一个巨大的框,其宽度与文本的整个宽度相同,包括方程式编号:

\begin{framed}
\begin{equation}
  x=y
\end{equation}  
\end{framed}

有没有办法得到一个只围绕方程式本身的框?

答案1

最好是boxed从使用amsmath

\documentclass{article}
\usepackage{amsmath}
\begin{document}
Using \verb|boxed| from \verb|amsmath|:
\begin{equation}
\boxed{x=y}
\end{equation}
Using \verb|fbox|:
\begin{equation}
\fbox{$x=y$}
\end{equation}

\end{document}

在此处输入图片描述

如果你使用align和 的朋友amsamth,你最好使用Aboxedfrommathtools包。一个相关且有用的参考是这个问题及其答案。

相关内容