我很难以 LaTeX 形式写出这个公式

我很难以 LaTeX 形式写出这个公式

在此处输入图片描述

我在用 LaTeX 格式写这个公式时遇到了困难。我不熟悉 LaTeX。提前谢谢您。

答案1

通常,您可以使用内联模式公式来执行此操作pdfLaTeX

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}
\begin{document}
$M_{S}=k\ast \overline{r_{\mathrm{cf}}}\,/\sqrt{k+k(k-1)\overline{r_{\mathrm{ff}}}}$
\end{document}

在此处输入图片描述

或者

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,amssymb}

\begin{document}
$M_{S}=k\ast \overline{r_{cf}}\,/\sqrt{k+k(k-1)\overline{r_{ff}}}$
\end{document}

在此处输入图片描述

但是由于您的公式是用 Office-Word 的字体构建的,Cambria Math我建议使用LuaLaTeX引擎:

\documentclass[a4paper,12pt]{article}
\usepackage{unicode-math}
\setmathfont{Cambria Math}
\begin{document}
$M_{S}=k\ast \overline{r_{cf}}\,/\sqrt{k+k(k-1)\overline{r_{ff}}}$
\end{document}

....您将获得非常接近您图像的结果。

在此处输入图片描述

答案2

通过使用nicefrac包和更标准的编写数学表达式的方式:

\documentclass[border=3.141502]{standalone}
\usepackage{nicefrac}

\begin{document}
$M_{S} = \nicefrac{k \overline{r_{\mathrm{cf}}}}
                  {\sqrt{k+k(k-1)\overline{r_{\mathrm{ff}}}}}$
\end{document}

在此处输入图片描述

相关内容