remove comments
This commit is contained in:
parent
53da8db9bf
commit
46417c2853
@ -25,11 +25,10 @@ def do_calculus(steps, name = "A", sep = "=", end = "", joining = " \\\\ \n"):
|
|||||||
:param steps: list of steps
|
:param steps: list of steps
|
||||||
:returns: latex string ready to be endbeded
|
:returns: latex string ready to be endbeded
|
||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
#ans = "\\begin{eqnarray*}\n"
|
|
||||||
|
|
||||||
ans = joining.join([name + " & " + sep + " & " + str(s) + end for s in steps])
|
ans = joining.join([name + " & " + sep + " & " + str(s) + end for s in steps])
|
||||||
#ans += "\n\\end{eqnarray*}\n"
|
|
||||||
return ans
|
return ans
|
||||||
|
|
||||||
texenv.filters['calculus'] = do_calculus
|
texenv.filters['calculus'] = do_calculus
|
||||||
|
Loading…
Reference in New Issue
Block a user