compile TeX from Sage
Hola!
I'm working on a program which should output the results of its computations in form of a typesetted document (ideally pdf from pdflatex).
I'm trying to perfrom the final presentation part via view
function, however, that doesn't seem to be the most convenient way (since view
is aimed at typesetting LaTeX formulas of elements of a list). A lot of hidden code (headers, turned on math modes etc.) are really unpleasent to get around.
I'm pondering about generating an explicit .tex
source code file. How can I call TeX compiler from Sage? I.e. how to compile it automatically in an own program, similarly as view
does it?)
ThanX in advance!
Sage 5.1 Kubuntu 12.04
Why not do it the other way around, using SageTeX? Then you could call Sage code as needed, but do all the real stuff in LaTeX. I'm not quite sure if this would help, as you are a little vague about the precise steps you
Why not do it the other way around, using SageTeX? Then you could call Sage code as needed, but do all the real stuff in LaTeX. I'm not quite sure if this would help, as you are a little vague about the precise steps you'll need.
I know what you mean & I did think about this way for quite a long time. But the truth is this my college project - which should be own Sage/Python library, not TeX project. Or maybe I just misunderstood the idea around SageTeX & it can processed via Python/Sage - is it somehow *"doable"*?
Oh, I see, you mean you are making a library and trying to document it. Well, hopefully some combination of something will work.
Or maybe you should only do the final presentation as SageTeX?