如何使括号中的公式左对齐?

如何使括号中的公式左对齐?

我想要下面的一个,但我的代码无法实现,有人可以帮忙吗? 在此处输入图片描述

我的代码:

\begin{equation}
\begin{aligned}
\rho=\left\{
             \begin{array}{lr}
             0, & |v_{y}^{CH}|<V_{1}^{T} \\
             y=0.5, & V_{1}^{T}\leq |v_{y}^{CH}|\leq V_{2}^{T}, \\
             z=1, & |v_{y}^{CH}|> V_{2}^{T}             
             \end{array}
\right.
\end{aligned}
\end{equation}

我的代码的结果: 在此处输入图片描述

答案1

ll只需用而不是声明表lr

\begin{array}{ll}

大批

\documentclass[a4paper]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{aligned}
\rho=\left\{
             \begin{array}{ll}
             0, & |v_{y}^{CH}|<V_{1}^{T} \\
             y=0.5, & V_{1}^{T}\leq |v_{y}^{CH}|\leq V_{2}^{T}, \\
             z=1, & |v_{y}^{CH}|> V_{2}^{T}             
             \end{array}
\right.
\end{aligned}
\end{equation}
\end{document}

答案2

为什么不使用简单的cases环境?

\documentclass[a4paper]{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\rho=
             \begin{cases}
             0, & |v_{y}^{CH}|<V_{1}^{T} \\[1ex]
             y=0.5, & V_{1}^{T}\leq |v_{y}^{CH}|\leq V_{2}^{T}, \\[1ex]
             z=1, & |v_{y}^{CH}|> V_{2}^{T}
             \end{cases}
\end{equation}

\end{document} 

在此处输入图片描述

相关内容