答案1
答案2
答案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}
测试一下怎么样?更简单,更自由。