I am trying to create a text in the figure legend (or key if you will)
that is in italics.
I have a line like this:
plot "LLvsHL.csv" using ($1-y):2:3 w boxerrorbars fs empty ti "Col-0",
\
"LLvsHL.csv" using ($1+y):4:5 w boxerrorbars fs solid ti "ucp1"
is there any way to make ucp1 in italics (but not "Col-0").
I am using:
set term postscript portrait enhanced solid
to generate the output.
Thanks for help!
This seems to work for me:
reset
set output "test.eps"
set term postscript eps enhanced
plot sin(x) title "sin", cos(x) title "{/Times-Italic cos}"
set term X11
set output
Also see the postscript documentation:
http://www.physics.umanitoba.ca/~gillis/gnuplot/ps_guide.ps
HTH,
Michael.