WAARSCHUWING: Dit bericht is door de mailserver software aangepast!
De volgende paragraaf geeft indicaties van gedane aanpassingen.
-----------------
WARNING: This e-mail has been altered by the mailserver software!
Following this paragraph are indications of the actual changes made.
-----------------
- Postmaster <[EMAIL PROTECTED]>Een bijlage genaamd tm_gentex.sh werd verwijderd uit dit document omdat dit een veiligheids risico vormde. Als deze bijlage toch gewenst is, neem dan contact op met de afzender en gebruik een andere manier om deze bijlage te verkrijgen. ----------------- An attachment named tm_gentex.sh was removed from this document as it constituted a security hazard. If you require this document, please contact the sender and arrange an alternate means of receiving it. ----------------- - Dangerous extension! -----------------
Hello, For what it's worth: I have generalised the xypic plugin to a general Latex plugin with a similar behaviour. See the attached files. The exported pdf-file gives an example. Incidentally, there seems to be a bug in the PDF-export. There's too much blue. Installation: put tm_gentex.sh somewhere where the shell can find it. Put init-xy.scm in ~/.TeXmacs/plugins/xy/prog/ Put init-diag.scm in ~/.TeXmacs/plugins/xy/prog/ It's very simple, but possibly useful for others too. Bas
diag.pdf
Description: Adobe PDF document
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; MODULE : init-xy.scm
;; DESCRIPTION : Initialize XYpic plugin (Reimplementation of the one in
TeXmacs)
;; COPYRIGHT : (C) 2005 Bas Spitters.
;;
;; This software falls under the GNU general public license and comes WITHOUT
;; ANY WARRANTY WHATSOEVER. See the file $TEXMACS_PATH/LICENSE for details.
;; If you don't have this file, write to the Free Software Foundation, Inc.,
;; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(plugin-configure xypic2
(:require (url-exists-in-path? "latex"))
;; The arguments are
;; Name of the program
;; Banner
;; Prompt
;; Top of the latex file
;; Bottom of the latex file
;; Please note that \ prevents line-breaks and we need \\\\ to represent one \
(:launch "tm_gentex.sh --texmacs xypic \
\"TeXmacs interface to XYpic \(high level 2-dimensional graphics\)\" \"XYpic
]\" \
\"\\\\documentclass{article}\\\\usepackage[all]{xy}\\\\pagestyle{empty}\\\\begin{document}\"
\
\"\\\\end{document}\" ")
(:session "XYpic2"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; MODULE : init-diag.scm
;; DESCRIPTION : Initialize diagrams plugin
;; COPYRIGHT : (C) 2005 Bas Spitters.
;;
;; This software falls under the GNU general public license and comes WITHOUT
;; ANY WARRANTY WHATSOEVER. See the file $TEXMACS_PATH/LICENSE for details.
;; If you don't have this file, write to the Free Software Foundation, Inc.,
;; 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(plugin-configure diag
(:require (url-exists-in-path? "latex"))
;; The arguments are
;; Name of the program
;; Banner
;; Prompt
;; Top of the latex file
;; Bottom of the latex file
;; Please note that \ prevents line-breaks and we need \\\\ to represent one \
(:launch "tm_gentex.sh --texmacs diag \
\"TeXmacs interface to pb-diagram package\" \"Diagrams ]\" \
\"\\\\documentclass{article}\\\\usepackage{pb-diagram}\\\\pagestyle{empty}\\\\begin{document}\\\\begin{diagram}\"
\
\"\\\\end{diagram}\\\\end{document}\" ")
(:session "Diagrams"))
_______________________________________________ Texmacs-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/texmacs-dev
