有什么方法可以让分数变大吗?我知道可以使用,\dfrac
但是文档序言中是否有任何代码可以让我使用它来全部分数更大吗?
答案1
\let\oldfrac\frac
\let\frac\dfrac
将使其\frac
定义为与相同,\dfrac
并\oldfrac
在您需要时使其可用。
答案2
看看你是否喜欢这个;正常分数以大小显示displaystyle
。这意味着线条会挤在一起,因此你需要固定线条的间距。
\documentclass{article}
\usepackage[english]{babel}
\everymath{\displaystyle}
\linespread{2}%controls the spacing between lines. Bigger fractions means crowded lines
\pagestyle{empty}
\begin{document}
Here is my text with normal fractions
$\frac{3}{4}$ this will cause lines to look crowd together unless you space them differently $\frac{1}{2}$.
\end{document}