So teilen Sie ein 2-spaltiges Dokument für eine große Formel auf

So teilen Sie ein 2-spaltiges Dokument für eine große Formel auf

Ich habe ein Dokument mit zwei Spalten und eine große Formel wie:

\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}

und da ich nicht weiß, wie ich die beiden Spalten genau an dieser Stelle aufteilen kann, habe ich jeden Tipp ausprobiert, den ich finden konnte, aber nichts funktioniert.

Vielen Dank an alle im Voraus

Antwort1

Sie können die Gleichung in die Spalte einpassen oder sie in einen Float mit zwei Spalten einfügen.

Ich habe es vermieden \text, da es Textabstände und inkonsistente Abstände um verwendet, +was vermutlich nicht erwünscht war. Ich habe auch Zifferntasten für vermieden \label.

Bildbeschreibung hier eingeben

\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}

verwandte Informationen