gnuplot3.7 では、plusというパッチがあって 簡単に数式を含んだ図を eps として作成することができました。 しかし gnuplot4.xx には plus パッチが公開されていない(らしい)ので、 別の手を考えないといけません。 ここでは、ターミナルタイプ epslatex を使った方法を紹介します。
% gnuplot gnuplot> set terminal epslatex gnuplot> set output "hogehoge.eps" gnuplot> set xlabel 'x-axis-label' gnuplot> set ylabel 'y-axis-label' gnuplot> plot sin(x) gnuplot> quit |
\documentclass[a4paper,12pt]{article} \usepackage{graphicx} \pagestyle{empty} \begin{document} \begin{figure}[htbp] \input{hogehoge} \end{figure} \end{document} |
% platex herohero.tex % dvips -E herohero.dvi -o herohero.eps |