等式中大括号旁边的两个语句

时间:2010-10-26 19:40:42

标签: latex

我想在右侧编写一个带有一个花括号({)的方程式,并且在两个不同的行中,在两个语句旁边写两个语句。 我该怎么做?感谢。

5 个答案:

答案 0 :(得分:160)

您可以在amsmath中尝试cases env。

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  f(x)=\begin{cases}
    1, & \text{if $x<0$}.\\
    0, & \text{otherwise}.
  \end{cases}
\end{equation}

\end{document}

amsmath cases

答案 1 :(得分:15)

这可以在没有任何特定包的普通LaTeX中实现。

\documentclass{article}
\begin{document}
This is your only binary choices
\begin{math}
  \left\{
    \begin{array}{l}
      0\\
      1
    \end{array}
  \right.
\end{math}
\end{document}

此代码会生成一些看起来像你需要的内容。

curly braces in front of two lines

答案 2 :(得分:7)

您在寻找

吗?
\begin{cases}
  math text
\end{cases}

从描述中不太清楚。但这可能是你正在寻找的http://en.wikipedia.org/wiki/Help:Displaying_a_formula#Continuation_and_cases

答案 3 :(得分:6)

要回答@MLT的评论,还有标准cases环境的替代方案,实际上并不太复杂,两行都有编号。这段代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage{cases}

\begin{document}

\begin{numcases}{f(x)=}
  1, & if $x<0$\\
  0, & otherwise
\end{numcases}

\end{document}

产生

screenshot of output pdf

请注意,此处数学必须由\(...\)$...$分隔,至少在每行&的{​​{1}}右侧。

答案 4 :(得分:0)

或者这个:

f(x)=\begin{cases}
0, & -\pi\leqslant x <0\\
\pi, & 0 \leqslant x \leqslant +\pi
\end{cases}