From: Dima K. <gn...@di...> - 2019-07-14 19:45:41
|
Ethan Merritt (UW) <me...@uw...> writes: > (1) This isn't a new conflict and it isn't the first time that the > specific issue of point sizes came up. That's why many (all?) terminals > accept a "pointsize <scale-factor>" option to "set term". So one option > is to experiment in advance with the output formats you are likely to want, > then adjust and save the corresponding "set term FOO pointsize BAZ" > commands for future use. > > (2) Alternatively, don't use the original fixed sequence of point shapes > at all. Instead redefine your standard set of line/point/dash properties > in ~/.gnuplot to use character-based point shapes: > > set linetype 1 lc rgb "dark-violet" pt "✕" > set linetype 2 lc rgb "#009e73" pt "⚫" > set linetype 3 lc rgb "#56b4e9" pt "⚪" > set linetype 4 lc rgb "#e69f00" pt "☉" > set linetype 5 lc rgb "#f0e442" pt "◐" > set linetype 6 lc rgb "#0072b2" pt "◔" > set linetype 7 lc rgb "#e51e10" pt "□" > set linetype 8 lc rgb "black" pt "▲" > set linetype 9 lc rgb "gray50" pt "▽" Hi. Neither of these are working for me. I'm doing this: set terminal pdfcairo noenhanced solid color font ",12" size 11in,8.5in set output "/tmp/tst.pdf" set grid set boxwidth 1 histbin(x) = 1 * floor(0.5 + x/1) set pointsize .13 set linetype 7 lc rgb "#e51e10" pt "#" plot '-' notitle with points pt 7 ps 2 1 1 2 2 3 3 4 4 5 5 e set output I tried these terminals: pdfcairo, png, postscript, x11. None of these appear to respond to either 'set pointsize' or 'set linetype'. And setting the pointsize in the 'set terminal' command looks like it's generally not supported. Suggestions? 'set pointsize' sounds like it's what I want. Thanks. |