如何在双栏中写出方程式?

如何在双栏中写出方程式?

我在 LaTeX 中创建了两列。但方程式超出了列的范围。我该如何将方程式放入单列中?

\begin{multline}
    C(x,y,z,t) = \frac{ (\pi t)^{-3/2} m_T}{8  (K_x K_y K_z)^{1/2}} \text{e}\left(-\frac{(x - 
    x_T - u_x t)^2}{4K_xt} - \frac{(y - y_T - u_y t)^2}{4K_yt} \right) \\ \times \left[ 
    \text{e}\left(-\frac{(z - z_T)^2}{4K_zt}\right) + \text{e} \left( - \frac{(z + z_T)^2} 
    {4K_zt} \right) \right],
    \label{atm_disp_eu}
\end{multline}

答案1

我建议你把方程分成行。我还建议您使用\exp符号。

在此处输入图片描述

\documentclass[twocolumn]{article} % or some other suitable document
\usepackage{amsmath}
\begin{document}
\hrule % just to illustrate width of text block
\begin{multline} \label{atm_disp_eu}
C(x,y,z,t) 
    = \frac{ (\pi t)^{-3/2} m_T}{8  (K_x K_y K_z)^{1/2}}\\
    \times 
    \exp\left(-\frac{(x - x_T - u_x t)^2}{4K_xt} 
              -\frac{(y - y_T - u_y t)^2}{4K_yt} \right) \\
    \times 
    \left[
    \exp\left(-\frac{(z - z_T)^2}{4K_zt} \right) + 
    \exp\left(-\frac{(z + z_T)^2}{4K_zt} \right) 
    \right]\,.
\end{multline}
\hrule % just to illustrate width of text block
\end{document} 

相关内容