Latex 方程中的和

Latex 方程中的和

我需要在 LaTex 中编写如附图所示的方程式。到目前为止,我已经像下面这样编写了它,但我不知道如何分离(或正确编写)类似于图中所示的方程式的“for”和“and”部分。

\begin{equation}    
P_d(\delta_L)=P_p(\delta_S,L_S)     for \delta_S>\delta_{0S} and \delta_L<\delta_{0L}
\end{equation}

在此处输入图片描述 我请求帮助来修正代码。谢谢

答案1

您可以使用align*

对齐

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}    
P_d(\delta_L) &= P_p(\delta_S,L_S)\\
&\phantom{{}={}}\text{for $\delta_S>\delta_{0S}$ and $\delta_L<\delta_{0L}$}
\end{align*}
\end{document}

答案2

编号...

\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{equation}  
\begin{aligned}[b]  
P_d(\delta_L)={}&P_p(\delta_S,L_S)\\
  & \text{for } \delta_S>\delta_{0S} \text{ and } \delta_L<\delta_{0L}
\end{aligned}
\end{equation}
\end{document}

在此处输入图片描述

答案3

您的图片暗示您使用的是双列格式。这是我的建议multlined

\documentclass[twocolumn]{article}
\usepackage{amsmath,mathtools}
\usepackage{newtxtext,newtxmath}

\usepackage{lipsum} % for context

\begin{document}

\lipsum*[3]
\begin{equation}
\begin{multlined}[b][0.66\displaywidth]
P_d(\delta_L)=P_p(\delta_S,L_S) \\
\text{for $\delta_S>\delta_{0S}$ and $\delta_L<\delta_{0L}$}
\end{multlined}
\end{equation}
\lipsum[4]

\end{document}

lipsum软件包仅用于提供上下文。该newtx...软件包用于获取 Times 风格的字体,如图片中所示。

在此处输入图片描述

答案4

   \begin{document}
    \begin{tabular}{p{1cm}l}    
    $P_d(\delta_L) =$ & $ P_p(\delta_S,L_S)$\\
          &\text{for $\delta_S>\delta_{0S}$ and 
      $\delta_L<\delta_{0L}$}
   \end{tabular}
   \end{document}

测试一下怎么样?更简单,更自由。

相关内容