On 8/28/07, Arthur Ralfs wrote: > ... > My problem is that I don't know how to interpret the output > and get the correctly formatted TeX. At this point I've tried > everything I can think of. >
Perhaps this approach suggested by Tim Daly a few years ago will help: http://lists.nongnu.org/archive/html/axiom-developer/2005-05/msg00228.html )lisp (progn (setq tmpout (make-string-output-stream)) (setq save |$algebraOutputStream|) (setq |$algebraOutputStream| tmpout) (|parseAndInterpret| "(x+1)^9") (setq result (get-output-stream-string |$algebraOutputStream|)) (setq |$algebraOutputStream| save) result) )lisp result Regards, Bill Page _______________________________________________ Axiom-developer mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/axiom-developer
