我想使用包\sfrac
中的命令xfrac
,但我希望分母中的 nominator 字体大小是正常的,而不是更小的。我读了随附的xfrac 的 PDF但不明白该怎么做。有人能帮忙吗?
举个例子:
我希望文本(1.4 和 1+...)位于其原来的位置(稍高,稍低),但字体大小与 0.1 相同。
答案1
这可能对你有帮助,也可能没用。该memoir
课程提供了几种排版分数的方法,其中包括\slashfracstyle
设置字体的宏和\slashfrac
宏。
\documentclass{article}
\makeatletter
\DeclareRobustCommand*{\slashfracstyle}[1]{%
{\m@th\ensuremath{\mbox{\fontsize\sf@size\z@\selectfont #1}}}}
\DeclareRobustCommand*{\slashfrac}[2]{\leavevmode
\raise.5ex\hbox{\slashfracstyle{#1}}\kern-.13em/%
\kern-.15em\lower.25ex\hbox{\slashfracstyle{#2}}}
\makeatother
\begin{document}
Fractions can be typeset like 3/4 or $\frac{3}{4}$ or \slashfrac{3}{4}
or \slashfracstyle{3/4}.
\end{document}
也许您可以在工作中使用这些宏。