我遇到了一个问题,\left
因为引擎说它必须在内使用$...$
,但如果我使用数学模式,一切都会搞砸。你们对如何解决这个问题有什么建议吗?这是代码
\begin{tabular}{cccc}
W & X & Y & Z \\
\hline
0 & 1 & 1 & 0
\end{tabular}
$\quad$=
\left\{\begin{tabular}{l}
$\nu(W) = 0$ \\
$\nu(X) = 1$ \\
$\nu(Y) = 1$ \\
$\nu(Z) = 0$
\end{tabular}\right
$\null \qquad$ Each variable is a formula.
结果应该是这样的
不使用任何数学模式时,该Each variable is a formula
部分看起来就像在数学模式下一样,而一旦我使用数学模式,前一句话就可以了,但括号会变得正常。我的目标是恢复Each variable is a formula
正常,并保持括号和照片中一样大。提前感谢你的帮助
答案1
这是一个单一表达式,因此您只需开始一次数学运算并结束一次,而不是围绕每个字母。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$
\begin{array}{cccc}
W & X & Y & Z \\
\hline
0 & 1 & 1 & 0
\end{array}
=
\left\{\begin{aligned}
\nu(W) &= 0 \\
\nu(X) &= 1 \\
\nu(Y) &= 1 \\
\nu(Z) &= 0
\end{aligned}\right.
$
Each variable is a formula.
\end{document}