LaTex中插入大括号的多行公式
时间: 2024-05-01 21:20:01 浏览: 105
Latex公式输入
5星 · 资源好评率100%
在LaTeX中,可以使用`\left\{`和`\right\}`来插入大括号,再结合`aligned`环境来实现多行公式的排版。具体代码如下:
```latex
\begin{equation}
\left\{
\begin{aligned}
x+y&=1\\
2x-y&=3\\
3x+4y&=5
\end{aligned}
\right.
\end{equation}
```
其中,`\begin{equation}`和`\end{equation}`用于将公式居中显示,`\left\{`和`\right\}`用于插入大括号,`aligned`环境用于排列多行公式,`&`用于对齐等号。根据需要,可以自行修改公式内容和格式。
阅读全文