答案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更多细节。