我想在右侧编写一个带有一个花括号({
)的方程式,并且在两个不同的行中,在两个语句旁边写两个语句。
我该怎么做?感谢。
答案 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}
答案 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}
此代码会生成一些看起来像你需要的内容。
答案 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}
产生
请注意,此处数学必须由\(...\)
或$...$
分隔,至少在每行&
的{{1}}右侧。
答案 4 :(得分:0)
或者这个:
f(x)=\begin{cases}
0, & -\pi\leqslant x <0\\
\pi, & 0 \leqslant x \leqslant +\pi
\end{cases}