名前: cube 日時: 2008-12-27 13:56:29 IPアドレス: 61.12.193.*
>>52469 すばやい返信ありがとうございます。 アドバイスいただいたとおり \documentstyle ⇒ \documentclass とし、一部変更したところPDFファイルでも画像が表示されることを確認しました。 若雲さん、ありがとうございました。 また、調べているうちに次のようなサイトがありましたので、参考までに http://betsukai.sakura.ne.jp/blog/magi/2008/04/post-410.html 以下に修正前、および修正したファイルの内容を載せておきます。同様の現象がおきた方の参考人なればと思います。 ●修正前--------------------------------- \documentstyle[epsbox,12pt]{jarticle} \begin{document} \begin{figure}[t] \centering \epsfile{file=test.eps,scale=0.6} \caption{test} \end{figure} \end{document} ----------------------------------------- ↓ ●修正後--------------------------------- \documentclass[12pt]{jarticle} \usepackage[dvips]{graphicx} \begin{document} \begin{figure}[t] \centering \includegraphics[scale=0.6]{test.eps} \caption{test} \end{figure} \end{document} -----------------------------------------
この書き込みへの返事: