2011年4月19日 星期二

[Linux][Gnuplot][輸出 PDF 檔 by PDFLite]

1. Download PDFlib Lite (http://www.pdflib.com/download/pdflib-family/pdflib-lite-7/)
2. tar zxf PDFlib-Lite-xx.tar.gz
3. cd PDFlib-Lite-xx && ./configure && make
4. sudo make install
5. sudo ldconfig
6. Reinstall gnuplot

[Linux][Gnuplot][輸出 PDF 檔 by tex]

1. set terminal latex,其餘照舊。
2. echo "\documentclass{article}" >> xxxx.tex
3. echo "\begin{document}" >> xxxx.tex
4. cat gnuplot.tex >> xxxx.tex
5. echo "\end{document}" >> xxxx.tex
6. pdflatex xxxx
就可以在 xxxx.pdf 中看到圖了。

[Gnuplot][用 Gnuplot 畫圖]

1. set output "檔名"
2. set terminal type(ex: pdf, png, window)
3. set title; set xlabel; set ylabel
4. set xzeroaxis; set yzeroaxis
5. set xrange [:]; set yrange [:]
6. plot "資料檔" using 1:2 title "Title" with linespoints
7. set output