如何在两行之间添加文字?(例如描述数学领域时)

如何在两行之间添加文字?(例如描述数学领域时)

我不确定如何最好地表述这个问题,但我只是想知道如何在数学模式下将行间距调整为如下图所示:

答案1

使用cases由提供的环境amsmath

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[
  k_{i2} = \begin{cases}
    k'_{i2} & \text{if $\lvert \eta \rvert < 0.15 \times G_{\max}$} \\
    0       & \text{otherwise}
  \end{cases}
\]

\end{document}

答案2

您可以使用矩阵来完成,例如:

\documentclass{article}
\usepackage{amsmath}

\begin{document}
    
    \[
    ki2:
    \begin{matrix}
        ki2 & if  & |\eta|<1.5\: x\: G_{max} \\
        0   &     & otherwise\\
    \end{matrix}
    \]
    
\end{document}

在此处输入图片描述

答案3

使用nccmath命令,\mrel可以通过一些技巧获得原始图片。通过更改或减少值[2.5ex],两条线会更接近。

\documentclass[12pt]{article} 
\usepackage{amssymb}
\usepackage{nccmath}
\begin{document} 
$k_{i2}\colon \mrel{k'_{i2} \quad \text{ if $\lvert\eta\rvert<0.15 \times G_{\max}$}\\[2.5ex] \mkern-70mu 0 \quad\, \text{ otherwise}}$
\end{document}

在此处输入图片描述

相关内容