答案1
为了更简单的输入,我建议加载mathtools
扩展的amsmath
,并使用它cases*
(带有星号)环境:第二列处于文本模式:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
$ \mathbf{Z}= \begin{cases*}
0 & if values are not inflated \\
1 & if values are inflated
\end{cases*} $
\end{document}
答案2
align
您可以通过将环境的第二列指定为左对齐来修复代码:
\documentclass{article}
\begin{document}
$\mathbf{Z}= \left\lbrace\begin{array}{cl}
0 & \textrm{if values are not inflated}\\
1 & \textrm{if values are inflated}
\end{array} \right.$
\end{document}
不过,我建议您使用以下cases
环境来做这些事情amsmath
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\mathbf{Z}= \begin{cases}
0 & \textrm{if values are not inflated}\\
1 & \textrm{if values are inflated}
\end{cases}$
\end{document}
答案3
您可以使用amsmath
情况相反:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$
\begin{cases}
0 & \textrm{if values are not inflated}\\
1 & \textrm{if values are inflated}
\end{cases}
$
\end{document}