将大方程式装箱(由 \dmath 生成)

将大方程式装箱(由 \dmath 生成)
\documentclass{article}
\usepackage{breqn}
\begin{document}
\begin{dmath}
\frac{\mathrm{d} \Pi}{\mathrm{d} u}=A E \int_{0}^{L} \frac{\mathrm{d} u}{\mathrm{~d} x} \frac{\mathrm{~d}(\delta u)}{\mathrm{~d} x}\mathrm{~d} x -\int_{0}^{L} q \delta u \mathrm{~d} x =0  \label{10}
\end{dmath}
\end{document}

在此处输入图片描述

我希望方程式出现在一个框里 在此处输入图片描述

我的代码使用 dmath,因为方程很大,我实际上在 IEEE 课堂上使用,所以帮助我装箱大方程式

答案1

给你:

\documentclass[svgnames]{article}
\usepackage{breqn}

\begin{document}

\begin{dmath}[frame, framesep={1em}]
\frac{\mathrm{d} \Pi}{\mathrm{d} u}=A E \int_{0}^{L} \frac{\mathrm{d} u}{\mathrm{~d} x} \frac{\mathrm{~d}(\delta u)}{\mathrm{~d} x}\mathrm{~d} x -\int_{0}^{L} q \delta u \mathrm{~d} x =0 \label{10}
\end{dmath}

\end{document} 

在此处输入图片描述

相关内容