当涉及 \left 和 \right 时,如何打破方程?

发布于 2024-10-23 14:11:37 字数 253 浏览 1 评论 0原文

我正在使用对齐环境,并且在某些时候我有兴趣将方程分解到下一行。问题是这个方程包含 \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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

动次打次papapa 2024-10-30 14:11:37

您可以在第一行末尾使用 \right. 并在第二行开头使用 \left. 作为匹配 \right 的占位符 不显示任何符号。

就像这样:

\begin{align}
\left( 4+5+6+ \right. \\
\left. 4 + 6 +2 \right)
\end{align}

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:

\begin{align}
\left( 4+5+6+ \right. \\
\left. 4 + 6 +2 \right)
\end{align}
残疾 2024-10-30 14:11:37

您可以使用 \Big\big 指定括号的大小,而不是使用 \left\right >、\bigg 等,这样您就不会遇到此类问题。请参阅

您给出的代码将如下所示:

\begin{align}
\big(4+5+6+ \\
4 + 6 +2 \big)
\end{align}

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:

\begin{align}
\big(4+5+6+ \\
4 + 6 +2 \big)
\end{align}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文