WinShellでPDFを作る時のエラーについて
Gnu plotで作図したものをWinShellでPDFにしようとしています。
↓Gnu plotでの作図
Terminal type set to 'windows'
gnuplot> plot sin(x)
gnuplot> replot cos(x)
gnuplot> set term postscript eps
Terminal type set to 'postscript'
Options are 'eps noenhanced monochrome blacktext \
dashed dashlength 1.0 linewidth 1.0 defaultplex \
palfuncparam 2000,0.003 \
butt "Helvetica" 14'
gnuplot> set output "sincos.eps"
gnuplot> replot
↓WinShlell
\documentclass{jarticle}
\pagestyle{empty}
\usepackage{amsmath}
\usepackage{graphicx}
\begin{document}
\begin{figure}[htb]
\begin{center}
\includegraphics[scale=0.8]{sincos.eps}
\caption{sin(x)とcos(x)のグラフ}
\end{center}
\end{figure}
\end{document}
これを入力して実行すると
エラー: LaTeX Error: Cannot determine size of graphic in sincos.eps (no BoundingBox).
--------------------------------------------------
- 1 個のエラー, 0 個の警告, 0 個のオーバーフル, 0 個のアンダーフル
と出てきます。
このエラーの解決法について教えてください。
お礼
ありがとうございます。 出来ました。