mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
4 lines
129 B
Gnuplot
4 lines
129 B
Gnuplot
set terminal latex
|
|
set output "plot-tmp.tex"
|
|
set datafile separator ","
|
|
plot 'data.csv' every::1::7 using 1:2:3:4 with vectors
|