答案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}
....您将获得非常接近您图像的结果。