|
From: Thomas S. <t.s...@fz...> - 2007-10-09 10:04:04
|
> to generate colored and grayscale multiplots using pm3d map and splot. > as the output, I would like to convert these multiplots to pdf. assuming you are using the x11 terminal, for a pdf output you set the terminal to 'pdf' and redo the whole plot. you don't "convert" to pdf! > it seems that standart recipe is not working ... 'replot' is not the standard recipe for a multiplot. > or, and more probably, I am doing something wrong or missing. > what I get at the end is the pdf version of the specific plot in the > multiplot which comes last on the screen. > can anybody tell me how to convert a colored multiplot into a pdf? 'set term pdf' and then redo the *whole* plot starting from 'set multiplot' up to 'unset multiplot' you should write multiplot block > set multiplot > ... > unset multiplot into a file (e.g. 'plot.gpl'), this makes it very easy to plot to different terminals: set term x11 load "plot.gpl" set term pdf set out "test.pdf" load "plot.gpl" set out Tugrul Hakioglu wrote: > > > > > Hi, > > I use > > gnuplot Version 4.0 patchlevel 0 > last modified Thu Apr 15 14:44:22 CEST 2004 > System: Linux 2.6.11-6mdksmp > > > to generate colored and grayscale multiplots using pm3d map and splot. > as the output, I would like to convert these multiplots to pdf. it seems > that standart recipe is not working or, and more probably, I am doing > something wrong or missing. what I get at the end is the pdf version > of the specific plot in the multiplot which comes last on the screen. > can anybody tell me how to convert a colored multiplot into a pdf? > > > regards > > Tugrul Hakioglu > Physics Department > Bilkent University, > Ankara, Turkey > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://www.nabble.com/%28no-subject%29-tf4592864.html#a13112687 Sent from the Gnuplot - User mailing list archive at Nabble.com. |