分数线?

分数线?

如何像下图一样将所有分数线加粗?我使用了

\newcommand{\thickfrac}[2]{\genfrac{}{}{3pt}{}{#1}{#2}}

但什么也没发生。

在此处输入图片描述

答案1

根据用户的回答大卫·卡莱尔问题。

\documentclass{article}

\usepackage{mathtools} % also loads the amsmath package


% Command with 2 obligatory arguments (num and denom)
\newcommand{\myThickFrac}[2]{\genfrac{}{}{5pt}{}{#1}{#2}}

% Command with 2 obligatory arguments (num and denom) and one optional argument (line width)
\newcommand{\myVariableThickFrac}[3][0.4pt]{\genfrac{}{}{#1}{}{#2}{#3}}

\begin{document}

%\genfrac{left-delim}{right-delim}{thickness}{mathstyle}{numerator}{denominator}

\begin{equation}
\genfrac{}{}{5pt}{}{\text{num}}{\text{demom}}
\end{equation}

\begin{equation}
\myThickFrac{\text{num}}{\text{demom}}
\end{equation}

\begin{equation}
\myVariableThickFrac{\text{num}}{\text{demom}} = \myVariableThickFrac[3pt]{\text{num}}{\text{demom}} = \myVariableThickFrac[5pt]{\text{num}}{\text{demom}}
\end{equation}

\end{document}

在此处输入图片描述

向这里的专家提问。我不知道为什么线宽也会对间距产生如此大的影响。我也不知道这与其余参数{left-delim}{right-delim}和有什么关系{mathstyle}(但这似乎在这里并不重要)。

  • \genfrac来自非常著名的amsmath包裹。
  • 我在这里使用的包mathtools是一个扩展包amsmath
  • mathtools自动加载amsmath
  • mathtools 与 amsmath更多细节。

来自amsmath手动的

在此处输入图片描述

相关内容