[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: gEDA-user: Re: printing to a ps or eps file from gschem



It should be in your geda distribution. Here is a copy ---

------- cut here -------
 
(output-orientation "portrait")
(output-type "limits")
(output-color "enabled")
(output-text "ps")
 
; You need call this after you call any rc file function
(gschem-use-rc-values)
 
; filename is specified on the command line
(gschem-print "dummyfilename")
 
(gschem-exit)

----- cut here -----

On 9/11/05, H.S. <hs.samix@xxxxxxxxx> wrote:
> Apparently, _Charles Lepple_, on 11/09/05 15:40,typed:
> > On 9/10/05, John Luciani <jluciani@xxxxxxxxx> wrote:
> >
> >>Are you including the EPS files in a LaTeX document?
> >
> >
> > Here's what I did for including gschem diagrams in my thesis:
> >
> > Makefile rules:
> >
> > %.ps : %.sch diagrams/print.scm
> >       cd diagrams; gschem -o $(notdir $@) -s print.scm $(notdir $<)
> >
> 
> I seemt to be missing something here. What is "print.scm"? From gschem's
> man page, it is supposed to be a guile script. Where do I get this from?
> 
> thanks,
> ->HS
> 
>