
A는 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
방정식을 열에 맞추거나 두 개의 열 부동 소수점에 넣을 수 있습니다.
나는 그것이 원하지 않는다고 생각하는 \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}