如何防止长方程跨越两列页面?[关闭]

问题描述 投票:1回答:1

我有一个长方程,有积分和求和过程,如何防止它跨越两列?我已经厌倦了使用拆分和多行,但我发现缺少}或)的错误。

\begin{公式}。

\hat{r}left(t/right)=frac{sqrt{d}}{sqrt{2}}}sum_{m=- \^{{{infty}left(y/left(t/right)+n/left(t/right)/right)P^astleft(t/right) _sleft(t/right)dt}right)gammaleft(t-mTright)

\结束{公式}

我想把%/alpha%的方程分解到第二行,有什么办法可以解决我的问题吗?

latex equation
1个回答
0
投票

虽然你没有给我们看你用了什么 multiline, split 等,你的问题最可能的原因是积分符号后不必要的组。虽然这个组在普通方程中不会有什么影响(但也不会有什么好处),但它会在以下情况下造成错误 multiline 因为你会把它分割成多行。

此外,您需要确保自动调整大小的数学定界符在每一行中都是平衡的。这可以通过在每行中插入 \right.\left.. 此外,要强制第二行的定界符与第一行的大小相同,可以使用 \vphantom{\int} ...或通过手动选择适当的定界符大小来节省所有的麻烦。

\documentclass[twocolumn]{article}

\usepackage{mathtools}

\begin{document}


\begin{multline}
\hat{r}\left(t\right)=\frac{\sqrt{d}}{\sqrt{2}}\sum\limits_{m=-\infty}^{\infty}\left(\int\left(y\left(t\right)+n\left(t\right)\right)P^\ast\left(t\right)\right.\\
\left.\vphantom{\int}\alpha_s\left(t\right)dt\right)\ 
\gamma \left(t-mT\right)
\end{multline}
\end{document}

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.