I am new to gnuplot. Any help is appreciated :)
I want to use a fill pattern of horizontal lines to shade in a polygon, but this fill pattern does not exist in epslatex terminal. Is there some way I can achieve this (preferably without switching terminals)?
Here's a simple example:
set terminal epslatex size 3.5,2.62 color color text
set output 'fillTest.tex'
set style fill pattern 4
plot 'fillTest.txt' with filledcurves ls 1
where the data is a polygon, for example:
0 0
1 1
1 2
2 2
3 1
2 0
Any ideas of a way to fill with horizontal lines in epslatex? Thanks!