Domanda

from sympy import *

x, alpha = symbols('x alpha')

latex(alpha/x)

Out[1]: '\\frac{\\alpha}{x}'

That doesn't work in latex. What do I do to get the proper output, i.e.: '\frac{\alpha}{x}' ?

È stato utile?

Soluzione

That is correct an output (repr escape some characters, \ in this case.). Try to print it.

>>> x = '\\frac{\\alpha}{x}'
>>> x
'\\frac{\\alpha}{x}'
>>> print(x)
\frac{\alpha}{x}

Altri suggerimenti

Got it!

Write:

print latex(alpha/x)
\frac{\alpha}{x}

Sorry about bothering you guys!

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top