This commit is contained in:
2018-09-20 18:27:40 +02:00
parent a343d62078
commit b63405592f
2 changed files with 9 additions and 2 deletions

View File

@@ -26,6 +26,13 @@ Abstracts tools for calculs manipulations
'2 + 3 * 4'
>>> tree2tex(t)
'2 + 3 \\times 4'
>>> t = Tree.from_str("2+3x")
>>> print(t)
+
> 2
> *
| > 3
| > x
"""