Skip to content

Commit

Permalink
switched to \equiv between assigned name and expression
Browse files Browse the repository at this point in the history
  • Loading branch information
gutow committed May 29, 2020
1 parent 71bba25 commit 4dc3ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Display_Math_Operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def dmo(*exprs,**kwarg): #Display math operation
if (namestr=='') or (namestr==str(expr)):
display(HTML('$$'+sp.latex(expr)+'$$'))
else:
display(HTML('$$'+sp.latex(namestr)+'='+sp.latex(expr)+'$$'))
display(HTML('$$'+sp.latex(namestr)+'\equiv'+sp.latex(expr)+'$$'))
else:
key = list(kwarg)[0] #ignore all but first.
exprstr=str(kwarg[key])
Expand Down

0 comments on commit 4dc3ef4

Please sign in to comment.