本文介绍了等式中大括号旁边的两个语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何用一个大括号 ({) 编写一个方程,并且在大括号旁边的右侧,两个不同行中的两个语句?

How can I write an equation with one curly brace ({), and on the right-hand side next to the curly, two statements in two different lines?

推荐答案

你可以试试 amsmath 中的 cases env.

You can try the cases env in amsmath.

documentclass{article}
usepackage{amsmath}

egin{document}

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

end{document}

这篇关于等式中大括号旁边的两个语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 01:15