|
From: levent <sub...@ya...> - 2010-04-07 21:45:19
|
I am plotting two multiplot figures in standalone from a script. the first figure is fine, however, the second gets a bad bbox in file2-inc.eps and the resulting eps shows only the first plot. the second plot of the second file has only labels and numbers. thanks in advance, levent gnuplot << EOF set term epslatex standalone color set pm3d map set out "$file1.tex" set multi set size .5,1 set origin 0,0 spl Ek1(x,y) set origin 0.5,0 spl nk1(x,y) unset multi set out "$file2.tex" set multi set size .5,1 set origin 0,0 spl Ek2(x,y) set origin 0.5,0 spl nk2(x,y) unset multi EOF latex $file1.tex; dvips -E $file1.dvi -o $file1.eps latex $file2.tex; dvips -E $file2.dvi -o $file2.eps |