latex 跨行大括号
时间: 2023-11-25 21:46:07 浏览: 224
Latex简介和语法
可以使用`\left\{`和`\right.`来实现跨行大括号,具体代码如下:
```
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
f(x) =
\left\{
\begin{aligned}
&1, && \text{if } x > 0 \\
&0, && \text{otherwise}
\end{aligned}
\right.
\]
\end{document}
```
这里使用了`amsmath`宏包提供的`aligned`环境来排版大括号内的多行公式。`\left\{`和`\right.`分别表示左大括号和空右边,可以根据需要替换成其他符号。
阅读全文