如何在Latex中显示两行括号?
有谁知道如何修改以下字符串以显示两行括号?
str = '$$c_i =\{\begin{array}{l l} 1 \quad L\left(Q_i\right) < 0 \\ 0 \quad L\left(Q_i\right) \geq 0 \\ \end{array}$$';
当前输出如下:
符号“{”必须包含两行(1 和 0)。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
tex 文件的序言中应包含
\usepackage{amsmath}
。The tex file should have
\usepackage{amsmath}
in the preamble.这是源自 Niall Murphy 的回答,“整理了一下”:
请注意,“\”变为“\\”,并且我删除了 \left 和 \right 括号修饰符,它们在之间引入了不需要的(我认为)空格土地 (。
This is derived from Niall Murphy's answer, "tidied up" a bit:
Note that the "\" becomes "\\", and I've removed the \left and \right parenthesis modifiers, which introduce unwanted (I think) space between L and (.
尝试在
\{
之前添加\left
并在末尾添加\rigth.
。它应该看起来像
$$\alpha_t = \left \{ {{\sqrt{\frac1N},\; t = 0 } \atop {\sqrt{\frac2N},\; t \ne 0 } } \right.$$
或
$$
\left\{\begin{表格}{l} \textbf{Y} = 0,299\textbf{R} + 0,587\textbf{G} + 0,114\textbf{B} \\ \textbf{Cb} = 128 + 0, 5\textbf{R} - 0,418688\textbf{G} - 0,081312\textbf{B} \\ \textbf{Cr} = 128 - 0,168736\textbf{R} - 0,331264\textbf{G } - 0,53\textbf{B} \end{表格} \right。
$$
Try add
\left
before\{
and\rigth.
at the end.It should look like
$$\alpha_t = \left \{ {{\sqrt{\frac1N},\; t = 0 } \atop {\sqrt{\frac2N},\; t \ne 0 } } \right.$$
or
$$
\left\{\begin{tabular}{l} \textbf{Y} = 0,299\textbf{R} + 0,587\textbf{G} + 0,114\textbf{B} \\ \textbf{Cb} = 128 + 0,5\textbf{R} - 0,418688\textbf{G} - 0,081312\textbf{B} \\ \textbf{Cr} = 128 - 0,168736\textbf{R} - 0,331264\textbf{G} - 0,53\textbf{B} \end{tabular} \right.
$$