当涉及 \left 和 \right 时,如何打破方程?
我正在使用对齐环境,并且在某些时候我有兴趣将方程分解到下一行。问题是这个方程包含 \left
和 \right
,所以当我尝试使用 \\
打破它时,我收到一个错误。有什么想法吗?
例如,以下内容将无法编译:
\begin{align}
\left(4+5+6+ \\
4 + 6 +2 \right)
\end{align}
谢谢。
I am using an align environment, and at some point I am interested in breaking an equation to the next line. The problem is that this equation includes a \left
and \right
, so when I try to break it using \\
, I get an error. Any ideas?
For example, the following wouldn't compile:
\begin{align}
\left(4+5+6+ \\
4 + 6 +2 \right)
\end{align}
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在第一行末尾使用
\right.
并在第二行开头使用\left.
作为匹配\right 的占位符
不显示任何符号。就像这样:
You can use
\right.
at the end of the first line and\left.
at the beginning of the second line to function as placeholders for the matching\right
wihtout any symbol shown.So exactly like this:
您可以使用
\Big
、\big
指定括号的大小,而不是使用\left
和\right
>、\bigg
等,这样您就不会遇到此类问题。请参阅此。您给出的代码将如下所示:
Instead of using
\left
and\right
, you can specify the size of the brackets with\Big
,\big
,\bigg
, etc so that you do not have that kind of problem. See this.The code you've given will be like this: