remove comments

This commit is contained in:
Lafrite 2015-04-23 15:48:38 +02:00
parent 53da8db9bf
commit 46417c2853
1 changed files with 1 additions and 2 deletions

View File

@ -25,11 +25,10 @@ def do_calculus(steps, name = "A", sep = "=", end = "", joining = " \\\\ \n"):
:param steps: list of steps
:returns: latex string ready to be endbeded
"""
#ans = "\\begin{eqnarray*}\n"
ans = joining.join([name + " & " + sep + " & " + str(s) + end for s in steps])
#ans += "\n\\end{eqnarray*}\n"
return ans
texenv.filters['calculus'] = do_calculus