乳胶中的 NLP 公式代码

乳胶中的 NLP 公式代码

在此处输入图片描述

如何用 latex 编写以下条件方程,我尝试了以下代码但它不起作用

\begin{align}
T_{P_i} = \begin{cases} 1 & \text{,T $\leq$ 1} \\
1+ \beta T & \text{,T$>$ 1} \end{cases}
in which T_{P_i} = \begin{cases} T_{now}-T_{last} & \text{,T_{last} $\neq$ NULL} \\
T_{now}-T_{update} & \text{,T_{last} = NULL}  \end{cases}
\end{align}

答案1

我发现您的代码中存在一些错误。主要是在 中使用了下标\text{}。还有一些内容如果以不同的方式编写可能会更好。此代码生成的内容与您的图像类似。

\begin{equation*}
T_{i} = \begin{cases}
1, & \text{T $\leq$ 1}\\
1+ \beta T, & \text{T$>$ 1} \end{cases},
\text{ in which } T = 
\begin{cases}
T_{now}-T_{last}, & T_{last} \neq NULL \\
T_{now}-T_{update}, & T_{last} = NULL
\end{cases}
\end{equation*}

如果您在对齐环境中需要它,您当然可以将\begin{equation*}和更改\end{equation*}\begin{align}\end{align}

如果您想进一步了解您的代码为何有效或无效,或者有关我的代码的信息,请告诉我。

答案2

以下代码可产生您想要的结果。我发现最好不要尝试让各种组件在 tex 编辑器中像在页面上一样排列,因为调整缩放比例无论如何都会破坏它。

\begin{document}
\begin{equation}
T(i) = \begin{cases} 1, T \geq 1\\1 + \beta T, T > 1 
\end{cases}\emph{, in which } T = \begin{cases}T_{now}- 
T_{last}, T_{last} \neq NULL\\T_{now}-T_{update}, T_{last} 
\neq NULL\end{cases}
\end{equation}
\end{document}

答案3

我更喜欢以下结果:

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}

\begin{document}
    \[
T_{i} = \begin{cases}
1       ,   & T \leq 1\\
1+ \beta T, & T > 1 
        \end{cases},
\text{ in which } 
T = \begin{cases}
T_{\mathrm{now}}-T_{\mathrm{last}},   & T_{\mathrm{last}} \neq \mathrm{NULL} \\
T_{\mathrm{now}}-T_{\mathrm{update}}, & T_{\mathrm{last}} = \mathrm{NULL}
    \end{cases}
    \]
\end{document}

相关内容