3

I want to redefine by increasing the width of the fraction line. enter image description here

\documentclass{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}

\begin{document} $\dfrac{x+y}{x^2-y^2}$\hspace{1cm}$\dfrac{;;;x+y;;;}{x^2-y^2}$ \end{document}

suarez
  • 182

1 Answers1

5

I'd not use \dfrac in inline math normally, but you can define your own command \newcommand\myfrac[2]{\dfrac{\;#1\;}{\;#2\;}} (or better use \frac in the definition)

David Carlisle
  • 757,742