Feat: change frac to dfrac for fractions

This commit is contained in:
2019-11-04 09:43:52 +01:00
parent cb8010c7ac
commit fadd93b9a6
3 changed files with 8 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ class MOFraction(Molecule):
>>> print(f.__txt__)
2 / 3
>>> print(f.__tex__)
\\frac{2}{3}
\\dfrac{2}{3}
>>> print(f)
2 / 3
>>> f = MOFraction(2, 3, negative = True)