以下 TeX 破坏了渲染,但如果我删除 \left 函数,TeX 会渲染(但没有弹性括号)。我正在帮助一位同事,我对 LaTeX 和 TeX 还不太熟悉,不知道如何解决这个问题。
\ \ \small{w_{1}[n] } = \left{
\begin{array}{ll}
1 & \ \ \small{n=0,1,...,12}\\
0 & \ \ \text{otherwise} \\
\end{array}
答案1
你写的是\left{ <stuff>
。TeX 试图将其<stuff>
变成左分隔符,因为{
打开了一个组。你可能想写的是\left\{ <stuff>
。
此外,您可能应该只使用cases
来自的环境amsmath
。
答案2
\small
当 TeX 处于数学模式时,您无法使用该指令。(此外,该命令\small
是一个开关,不带参数。)我建议您按如下方式设置 MWE:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[ % begin display math
w_{1}[n] =
\begin{cases}
1 & n=0,1,\dots,12\\
0 & \text{otherwise} \\
\end{cases}
\] % end display math
\end{document}