3 ;; This file may be used to print gschem schematics from the
4 ;; command line. Typical usage is:
6 ;; gschem -p -o mysch.ps -s /path/to/this/file/print.scm mysch.sch
8 ;; The schematic in "mysch.sch" will be printed to the file "mysch.ps"
10 ;; Uncomment these to override defaults when printing from the command line
11 ;(print-orientation "portrait")
12 ;(print-color "enabled")
13 ;(print-paper "na-letter")
15 ; You need call this after you call any rc file function
16 (gschem-use-rc-values)
18 ; filename is specified on the command line
19 (gschem-pdf "dummyfilename")
21 (format (current-error-port)
22 "WARNING: Exporting with 'print.scm' is deprecated. Also, it now
23 outputs PDF rather than PostScript, which is probably not what you
26 Please use `gaf export' instead. See `man gaf' for details.