我有一个 2 列 LaTeX 文档(在 overleaf 中)。我想在其中一列中添加一个公式。
我当前的代码如下:
\[0.39\frac{total\_word\_count}{total\_sentence\_count} +
11.8\frac{total\_syllable\_count}{total\_word\_count}\tag{1}\]
并产生以下等式(在右栏,这也是我想要的位置):
我在上面和下面展示了一些文本,以给出它在文本中的样子的印象。
理想情况下我希望它看起来像:
公式(1)
简短的介绍
我尝试使用该\begin{equation}
字段resizebox
,但没有成功。
任何帮助,将不胜感激!
答案1
通过使用包\mfrac
中定义的指令nccmath
:
\documentclass[twocolumn]{article}
\usepackage{nccmath}
\usepackage{lipsum}
\begin{document}
\lipsum[1][1-3]
\begin{equation}
0.39\mfrac{\textrm{total\_word\_count}}{\textrm{total\_sentence\_count}} {+}
11.8\mfrac{\textrm{total\_syllable\_count}}{\textrm{total\_word\_count}}
\end{equation}
\lipsum[1][4-5]
\end{document}
答案2
各种可能性:
\documentclass[twocolumn]{article}
\usepackage{amsmath}
\begin{document}
dont use math italic (or number by hand)
\begin{equation}
0.39\frac{total\_word\_count}{total\_sentence\_count} +
11.8\frac{total\_syllable\_count}{total\_word\_count}
\end{equation}
scriptstyle
\begin{equation}\scriptstyle
0.39\tfrac{\textrm{total\_word\_count}}{\textrm{total\_sentence\_count}} {+}
11.8\tfrac{\textrm{total\_syllable\_count}}{\textrm{total\_word\_count}}
\end{equation}
two lines
\begin{multline}
0.39\frac{\textrm{total\_word\_count}}{\textrm{total\_sentence\_count}} \\
+ 11.8\frac{\textrm{total\_syllable\_count}}{\textrm{total\_word\_count}}
\end{multline}
shorter names
\begin{equation}
0.39\frac{\textrm{tword}}{\textrm{tsentence}} +
11.8\frac{\textrm{tsyllable}}{\textrm{tword}}
\end{equation}
\end{document}