在一个方程中,两个语句旁边的大括号
我想写一个方程,右边有一个大括号( {
),旁边是两条不同线的两条语句。 我该怎么做? 谢谢。
你可以尝试env的cases
。
\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}
你在找什么
\begin{cases} math text \end{cases}
从描述中不太清楚。 但可能是这是你正在寻找http://en.wikipedia.org/wiki/Help:Displaying_a_formula#Continuation_and_cases
这可以在没有任何特定包装的普通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}
这段代码产生的东西看起来你需要什么。
为了回答@MLT的评论,标准cases
环境还有一个替代scheme,这两个行的编号都不是太复杂。 此代码:
\documentclass{article} \usepackage{amsmath} \usepackage{cases} \begin{document} \begin{numcases}{f(x)=} 1, & if $x<0$\\ 0, & otherwise \end{numcases} \end{document}
产生
请注意,在这里,math必须由\(...\)
或$...$
分隔,至less在每行( 参考 )的右侧。
或这个:
f(x)=\begin{cases} 0, & -\pi\leqslant x <0\\ \pi, & 0 \leqslant x \leqslant +\pi \end{cases}