mailing-list for TeXmacs Users

Text archives Help


plugin for xmgrace


Chronological Thread 
  • From: Stephane Popinet <address@hidden>
  • To: address@hidden
  • Subject: plugin for xmgrace
  • Date: Mon, 30 Aug 2004 17:53:10 +1200

Hi,

I have just written a very simple plugin for direct import of xmgrace files (http://plasma-gate.weizmann.ac.il/Grace/).

hope this is useful to someone,

Stephane

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; MODULE      : init-xmgrace.scm
;; DESCRIPTION : setup converter for xmgrace
;; COPYRIGHT   : (C) 2004  Stephane Popinet
;;
;; 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.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(define (xmgrace-initialize)
   (define-format xmgrace
     (:name "Xmgrace")
     (:suffix "agr" "xmgr"))
   (converter xmgrace-file postscript-file
     (:shell "xmgrace" "-noask -hardcopy -hdevice EPS -printfile" to from)))

(plugin-configure xmgrace
   (:require (url-exists-in-path? "xmgrace"))
   (:initialize (xmgrace-initialize)))



Archive powered by MHonArc 2.6.19.

Top of page