如何正确显示带下标的复合分数?

如何正确显示带下标的复合分数?

哪一个是正确的在环境中表示复合分数的方法是什么equation?使用正确的我的意思是,这样表示法就可以为所有分子和分母提供相同的字体尺寸。考虑以下图像:

在此处输入图片描述

例如,我希望 的w_{VDW}尺寸与 的尺寸相同H_{W,VDW}。这是印刷上正确的选择吗?您有什么建议?

我尝试过\sfrac但情况似乎更糟。

答案1

这主要是风格问题。我给你三种不同的策略。

\documentclass{article}
\usepackage{amsmath}
\begin{document}

First display with \verb|\frac|, in the right hand side
the fractions are smaller
\[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \frac{\Delta_{VDW}}{w_{VDW}}
}{
  \frac{\Delta_{TDW}}{w_{TDW}}
}
\]
and second display with \verb|\dfrac|, in the right
hand side the fractions are larger
\[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \,\dfrac{\Delta_{VDW}}{w_{VDW}\mathstrut}\,
}{
  \,\dfrac{\mathstrut \Delta_{TDW}}{w_{TDW}}\,
}
\]
Finally, a third display with the slashed form
\[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \Delta_{VDW}/w_{VDW}
}{
  \Delta_{TDW}/w_{TDW}
}
\]
\end{document}

在此处输入图片描述

答案2

第四个显示来自 的\mfrac(~80 % \displaystyle) nccmath。以 egreg 为例:

\documentclass{article}
\usepackage{nccmath}

\begin{document}

First display with \verb|\frac|, in the right hand side
the fractions are smaller: \[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \frac{\Delta_{VDW}}{w_{VDW}}
}{
  \frac{\Delta_{TDW}}{w_{TDW}}
}
\]
and second display with \verb|\dfrac|, in the right
hand side the fractions are larger: \[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \,\dfrac{\Delta_{VDW}}{w_{VDW}\mathstrut}\,
}{
  \,\dfrac{\mathstrut \Delta_{TDW}}{w_{TDW}}\,
}
\]
Finally, a third display with \verb|\mfrac| in the right-hand side as a compromise: \[
\frac{H_{W,WDV}}{H_{W,TDW}}=
\frac{
  \,\mfrac{\Delta_{VDW}}{w_{VDW}\mathstrut}\,
}{
  \,\mfrac{\mathstrut \Delta_{TDW}}{w_{TDW}}\,
}
\] \end{document}

在此处输入图片描述

相关内容