等式中的文本

等式中的文本

我正在尝试实现下图所示的等式需要方程

我没有得到方程式和正文之间的文本对齐方面的预期结果。

我尝试了带有in选项的text模式,但文本的对齐方式不正确(下面 MWE 中的第一个方程式)。接下来(MWE 中的第二个方程式)我尝试了 和,这样可以对齐文本,但它也会将方程式与正文左侧对齐,并且右括号和方程式编号也会被搞乱。splitequationsplit intertextgather

尝试方程

有什么方法可以实现这个吗?

平均能量损失

\documentclass{article}
\usepackage{amsmath}
\usepackage{lipsum}
\begin{document}
\lipsum[1]

\begin{equation}
\left.
\begin{split}
\text{with respect to point $B$}\\
aP_{1}-2aN_{c}+3aP_{2} & = 0\\
\text{with respect to point $C$}\\
2aN_{B}-aP_{1}+aP_{2} &=0\\
\end{split}
\right\}
\label{label-of-equation}
\end{equation}

\begin{gather}
\left.
\begin{split}
\intertext{with respect to point $B$}
aP_{1}-2aN_{c}+3aP_{2} & = 0\\
\intertext{with respect to point $C$}
2aN_{B}-aP_{1}+aP_{2} &=0\\
\end{split}
\right\}
\label{label-of-equation}
\end{gather}
\lipsum[1]
\end{document}

答案1

empheq包(加载mathtoolsamsmath)可以帮助重现OP的图像:

\documentclass{article}

\usepackage{empheq}

\usepackage{lipsum}
\begin{document}
\lipsum[2]%
\begin{empheq}[right =\mathrlap{\enspace\empheqrbrace}]{align}%
\shortintertext{with respect to point $B$: }
&aP_{1}-2aN_{c}+3aP_{2} = 0 \notag\\[-1ex]\\[-1ex]
\shortintertext{with respect to point $C$: }
&2aN_{B}-aP_{1}+aP_{2}=0\notag
\label{label-of-equation}
\end{empheq}

\lipsum[2]
\end{document} 

在此处输入图片描述

答案2

将等式移动到左边距的一个简单方法是 在和 \displayindent=-103pt之间插入命令(也许您必须使用精确的数字。)缺点:等式的数字也会向左移动。\begin{equation}\left.

相关内容