How to remove \left( \right)
latex(2^(3*x)) gives 2^{3\, x} this is fine, but
latex(e^(3*x)) gives e^{\left(3\, x \right)}.
How can i change this behaviour?
Thanks for help
latex(2^(3*x)) gives 2^{3\, x} this is fine, but
latex(e^(3*x)) gives e^{\left(3\, x \right)}.
How can i change this behaviour?
Thanks for help
This is not an answer, but just diagnosing.
sage: a = e^(3*x)
sage: b = 2^(3*x)
sage: a.operands()
[3*x]
sage: b.operands()
[2, 3*x]
sage: a.operator()
exp
sage: b.operator()
<built-in function pow>
We treat the exponential function differently, because it's considered a function in that sense. Since there are no extra operands, our LaTeX method senses the need for parentheses. This would have to be fixed at the Pynac level, if one were to consider it a bug.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2012-03-07 05:30:06 +0100
Seen: 366 times
Last updated: Mar 07 '12
latex(-(x-1)/(x+1)) still broken
Is there a function to render latex or html in a notebook from a string ?
What is the function for "%latex" on a notebook cell ?
getting blank cells in html.table
converting expressions into latex code
How do I change the default latex output of a vector?