
2 列の論文があり、次のような大きな数式があります。
\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}
そして、その正確なスペースで 2 つの列を分割する方法がわからないので、見つけられるヒントをすべて試しましたが、何も機能しません。
よろしくお願いします
答え1
数式を列内に収めることも、2 列のフロートに配置することもできます。
\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}