On January 24, 2006 2:10 PM Yigal Weinstein wrote: > Does anyone use and obtain graphics through the draw() > command using texmacs as an interface to axiom. If so > please tell me how you managed this. >
At the present time this will only work on the Linux version of Axiom. > I have heard that the following method works: > > 1. get texmacs souce You only really need the source of tm_axiom.c > 2. get tm_axiom.c > alter this file so that if there exists a call to > AXIOMsys change to axiom See below. > 3. compile tm_axiom.c Yes. Make sure the new binary replaces the existing one. > 4. compile texmacs This is not necessary. > if this or something similar is necessary please tell me > it would be great to get graphics working. On Wed, 12 Oct 2005 03:50:00 -0500 Andrey Grozin wrote: http://lists.nongnu.org/archive/html/axiom-developer/2005-10/msg00116.html > It is easy to modify tm_axiom.c to start axiom (with hypertex > and graphics) > > Instead of starting AXIOMsys, it should start axiom -noclef > > Also, in void session(void), declare > > int prompts=0; > > and, a few lines later, replace the line > > else if (code==PROMPT) break; > > by the line > > else if (code==PROMPT) { if ((++prompts)==2) break; } > > ... See http://wiki.axiom-developer.org/TeXmacs for mor information. > Also if anyone has been able to get inline graphics in > texmacs I would really like to know- this would be really > nice. As far as I know, no one has done this. Certainly it is technically possible, though perhaps a little difficult because of the way Axiom uses another process to render graphics. This external graphics processor can be told to save the result in a postscript format file, then it can be imported by TeXmacs or sent via a stream to TeXmacs from the tm_axiom interface program. If you are motivated to work on implementing a solution to this, I would be glad to help. > thanks for reading Thanks for asking :) If you can think of a way of updating the web page at http://wiki.axiom-developer.org/TeXmacs so that this issue is more clearly documented, I would be very happy if you (or anyone else) could improve the content. (This web site is an Axiom community wiki - editable website.) Regards, Bill Page. _______________________________________________ Axiom-math mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/axiom-math
