Hopefully, this is a stupid question, and easy to fix. When I run this simple gnuplot script:
#!/usr/bin/env gnuplot
set term png
set out "out.png"
plot "<jot -r -p 2 500 1 2" not w p pt 7 ps 4 lc rgb "#908DB6CD"
set term post eps enhanced color
set out "out.eps"
replot
exit
The png file looks like this:
And the eps looks like this:
The pdfcairo
terminal also gives me transparency. Any clues on how to make the eps files show transparency?
Many thanks in advance!