Hello Mr. Sfeam. Thank you for your response.
Just before you posted that, I found the page:
http://gnuplot.10905.n7.nabble.com/bug-or-feature-td12930.html
which addresses this exact issue. Based on
this page, like your suggestion, I changed:
set term pngcairo enhanced size 400, 200
to:
set term png enhanced butt size 400, 200
that is, I added "butt" to the "set term" command.
I also changed "pngcairo" to "png" as the option "butt"
did nothing to the resulting image with "pngcairo".
HOWEVER, this solution only "sort of " works
as there is now a weird artifact at the beginning of
each line. Obviously, I would like to get rid of
this artifact.
Thank you very much for your help;
::::::::::::::
line_width_02.com ::::::::::::::
set term png enhanced butt size 400, 200
set output 'line_width_02.png';
set nokey;
set origin 0.0, 0.0;
plot [ 0 :30 ][ 0: 50 ] \
'line_width_02_01.dat' w l lt 1 lw 1, \
'line_width_02_02.dat' w l lt 1 lw 7, \
'line_width_02_03.dat' w l lt 1 lw 11, \
'line_width_02_04.dat' w l lt 1 lw 15
:::::::::::::: line_width_02_01.dat ::::::::::::::
10 40
20 40
:::::::::::::: line_width_02_02.dat ::::::::::::::
10 30
20 30
:::::::::::::: line_width_02_03.dat ::::::::::::::
10 20
20 20
:::::::::::::: line_width_02_04.dat ::::::::::::::
10 10
20 10