Re: [O] imaxima babel

2013-11-27 Thread Alan Schmitt
Hello Johnny, yggdra...@gmx.co.uk writes: Many thanks for all the help! I have now figured out how to use maxima from org-mode source blocks and display the results as pretty printed equations online. To remember, I made a small summarising example file, attached below for posteriority.

Re: [O] imaxima babel

2013-11-27 Thread yggdrasil
Alan Schmitt alan.schm...@polytechnique.org writes: This is very useful, thanks a lot. A couple comments and questions on your example file (which would be a nice addition to worg). There is actually already some maxima documentation on worg that got me started as I was unsure if maxima is

Re: [O] imaxima babel

2013-11-27 Thread Nick Dokos
yggdra...@gmx.co.uk writes: Alan Schmitt alan.schm...@polytechnique.org writes: ... Finally, and it's a nitpick: breaking lines in the middle of (info ...) links prevents following them using C-x C-e. Actually, I never used these sort of links myself, thanks for pointing out how this is

Re: [O] imaxima babel

2013-11-27 Thread Thomas S. Dye
yggdra...@gmx.co.uk writes: There is actually already some maxima documentation on worg that got me started as I was unsure if maxima is supported at all, I have added the link in the summary. It would probably be good to merge to worg, but I have no access to it and not time right now to

Re: [O] imaxima babel

2013-11-26 Thread yggdrasil
Eric Schulte schulte.e...@gmail.com writes: yggdra...@gmx.co.uk writes: [... how to use maxima code from org-mode and display results inline in the org-buffer ...] You would switch from :results latex to :results raw, in which case the latex will be inserted directly into the Org-mode

Re: [O] imaxima babel

2013-11-23 Thread Eric Schulte
yggdra...@gmx.co.uk writes: Thanks, this does answer my initial question and works good enough to enable latex export! Even better would be if it's possible to mimic imaxima behaviour which is (I think) to directly process the resulting latex code and (temporarily?) store it as an image to

Re: [O] imaxima babel

2013-11-22 Thread yggdrasil
Thanks, this does answer my initial question and works good enough to enable latex export! Even better would be if it's possible to mimic imaxima behaviour which is (I think) to directly process the resulting latex code and (temporarily?) store it as an image to display the pretty-printed

Re: [O] imaxima babel

2013-11-21 Thread Rüdiger Sonderfeld
TeX output is a feature of Maxima. See (info (maxima) Functions and Variables for TeX Output) E.g. #+name: solve-maxima #+header: :exports results #+begin_src maxima :results output tex(exp(-x)/x); #+end_src #+RESULTS: solve-maxima : $${{e^ {- x }}\over{x}}$$ On Thursday 21 November 2013

Re: [O] imaxima babel

2013-11-21 Thread Eric Schulte
Changing :results output to :results output latex in Rüdiger's nice example below would probably be an improvement. Best, Rüdiger Sonderfeld ruedi...@c-plusplus.de writes: TeX output is a feature of Maxima. See (info (maxima) Functions and Variables for TeX Output) E.g. #+name: