我正在尝试编写一个包含相当多因子的积分。所有东西加在一起很容易超过一行,甚至两行。如果我尝试使用某些对齐环境(无论是 align、alignat、split、multiline 还是其他任何环境)对齐所有内容,我将始终面临第一行和第二行之间的巨大差距,因为积分的 vbox 比标准线的框大得多。有没有办法减小我的积分框的大小,以便我可以让整个被积函数更紧密地靠在一起?
\documentclass[12pt]{article}
\usepackage[intlimits]{amsmath}
\begin{document}
\begin{align}
\notag I(\mu)&=\int_\Omega \text{long equation here}\\
\notag&\hphantom{=\int_{\Omega}}+\text{even more long equation here}\\
&\hphantom{=\int_{\Omega}}+\text{even even more long equation here}\,\mathrm{d}\mu
\end{align}
\end{document}
答案1
你没有多线方程,而是一个带有多线被积函数的单线方程,所以我不会equation
使用align
\documentclass{article}
\usepackage[intlimits]{amsmath}
\begin{document}
\begin{equation}
I(\mu)=\int_\Omega
\;\begin{aligned}
&\text{long equation here} +\\
&\text{even more long equation here}\\
&\text{even even more long equation here}
\end{aligned}
\,\mathrm{d}\mu
\end{equation}
\end{document}