LaTex中插入大括号的多行公式
时间: 2024-05-03 11:17:15 浏览: 130
Latex公式输入
5星 · 资源好评率100%
在LaTeX中插入大括号的多行公式可以使用`cases`环境。具体操作如下:
```
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
f(x) =
\begin{cases}
x^2 \quad & \text{if } x < 0 \\
\frac{1}{x} \quad & \text{if } x \geq 0
\end{cases}
\end{equation*}
\end{document}
```
上述代码中,`\usepackage{amsmath}`是使用`cases`环境的前提,`equation*`表示不对公式编号,大括号内部则是每个条件的公式表达式和条件语句。其中`\text{}`表示在数学环境中插入文本。
阅读全文