如何将一张纸分成两栏以显示一个大公式

如何将一张纸分成两栏以显示一个大公式

我有一张两栏的纸,上面有一个大公式,例如:

\documentclass[twocolumn,article,a4paper]{memoir}
\usepackage{amsmath}
\begin{document}

Therefore, triplets of the sensory score for aroma of that sample was calculated as:
\begin{equation}
\label{eq:eq1}
\text{S598A} = \dfrac{\text{0(0 0 25)+ 2(25 25 25)+ 3(50 25 25) + 14(75 25 25) + 6(100 25 0)}}{0+2+3+14+6} 
\end{equation}

\end{document}

因为我不知道如何在那个确切的空间中分割这两列。我尝试了所有能找到的技巧,但都不起作用。

提前感谢大家

答案1

您可以使方程式适合列,也可以将其放在两列浮点数中。

我避免使用 ,\text因为它使用文本间距和 周围不一致的间距,+我认为这是不需要的。我还避免使用 的数字键\label

在此处输入图片描述

\documentclass[twocolumn,article,a4paper]{memoir}
\usepackage{amsmath}
\begin{document}
\begin{figure*}
\begin{equation}
\label{eq:triplets-a}
\mathrm{S598A} = \frac{
0(0\ 0\ 25)+ 2(25\ 25\ 25)+
 3(50\ 25\ 25)\\
 + 14(75\ 25\ 25) +
 6(100\ 25\ 0)
}
{0+2+3+14+6} 
\end{equation}
\end{figure*}

blah 
\newpage
blah 
\newpage
Therefore, triplets of the sensory score for aroma of that sample was calculated as:
\begin{equation}
\label{eq:triplets-b}
\mathrm{S598A} = \frac{
\begin{gathered}
0(0\ 0\ 25)+ 2(25\ 25\ 25)+
 3(50\ 25\ 25)\\
 + 14(75\ 25\ 25) +
 6(100\ 25\ 0)
\end{gathered}}
{0+2+3+14+6} 
\end{equation}
Therefore, triplets of the sensory score for aroma of that sample was calculated as shown in \ref{eq:triplets-a}


\newpage
blah blah blah
\end{document}

相关内容