LaTeX: Difference Between \frac and \dfrac?

  • Context: LaTeX 
  • Thread starter Thread starter FilupSmith
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 6K views
FilupSmith
Messages
28
Reaction score
0
Hi, I'm trying to learn LaTeX and one of the things I'm trying to figure out is what is the difference between \frac and \dfrac?

I mean, look:
\frac{a}{b} is: $$\frac{a}{b}$$
\dfrac{a}{b} is: $$\dfrac{a}{b}$$

Other then the thickened line, is there really any difference?
Thank you...
 
Physics news on Phys.org
Looking it up, a slight display difference is the only real change that you'll see on PF.
 
Since the "d" is short for "\displaystyle" or "\D", you'll only see a difference for inline latex, e.g., ##\frac{a}{b}## versus ##\dfrac{a}{b}##
 
I looked it up and i believe the only difference is that \tfrac or \frac allow for text sized fractions (great for 1/3, etc.) while \dfrac is best for formulas! Thanks none the less!
 
\frac automatically scales to the "best" size depending on the position in the formula, as well as changing between inline and display math. \dfrac and \tfrac don't change size.

Use \frac, unless you don't want the default size.

Code:
 ##\frac{1}{2} 3^{\frac{1}{2}}\quad 
\dfrac{1}{2}3^{\dfrac{1}{2}}\quad 
\tfrac{1}{2}3^{\tfrac{1}{2}}##

$$\frac{1}{2} 3^{\frac{1}{2}}\quad 
\dfrac{1}{2}3^{\dfrac{1}{2}}\quad 
\tfrac{1}{2}3^{\tfrac{1}{2}}$$

##\frac{1}{2} 3^{\frac{1}{2}}\quad
\dfrac{1}{2}3^{\dfrac{1}{2}}\quad
\tfrac{1}{2}3^{\tfrac{1}{2}}##

$$\frac{1}{2} 3^{\frac{1}{2}}\quad
\dfrac{1}{2}3^{\dfrac{1}{2}}\quad
\tfrac{1}{2}3^{\tfrac{1}{2}}$$
 
Last edited: