当我使用该\frac
命令时,我注意到分数项使用的字符比命令中没有的字符小\frac
。有办法纠正吗?
答案1
可以使用 来获得更大(更好?)版本的分数\dfrac
。
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
\gamma &= \frac{1}{\sqrt{1-\frac{v^2}{c^2}}} \\
& \notag \\
\gamma &= \dfrac{1}{\sqrt{1-\dfrac{v^2}{c^2}}}
\end{align}
\end{document}
答案2
对于分数,nicefrac
可能是首选。下面是比较:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{nicefrac}
\begin{document}
This is some text with a $\frac{1}{2}$ in it.
This is some text with a \textonehalf{} in it.
This is some text with a \nicefrac{1}{2} in it.
\end{document}
答案3
另一个解决方案是使用中等大小的分数(~ 中定义的 displaystyle 的 80% ),再加上nccmath
的轻微增加。对于较大的运算符,有一个命令:\baselineskip
setstretch
\medop
\documentclass{article}
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{nccmath}
\usepackage{setspace}
\setstretch{1.1}
\begin{document}
This is some text without fractions.
This is some text without fractions. This is some text without fractions.
This is some text with a $\mfrac{1}{2}$ in it: $ p(x,y) = \medop\sum_{m=1}^{\infty} \medop\sum_{n=1}^{\infty} p_{mn} \sin \bigl(\mfrac{m \pi x}{a}\bigr) \sin \bigl(\mfrac{n \pi y}{b}\bigr) $
This is again some text without fractions. Again some text without fractions.
\end{document}
答案4
您可以使用\dfrac
较大的分数来表示较大的数字。\dfrac
属于amsmath
包,因此您需要导入它。此外,之所以称为 dfrac,是因为它\frac
处于显示模式,这通常会使事物变大。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
Large Fraction: $\dfrac{1}{2}$
Small Fraction: $\frac{1}{2}$
\end{document}
顺便说一句,如果你想要计算“1/2”这样的分数(带斜线),请使用\sfrac