発言者: munepi
発言日: 2007 09/02 17:32
> No.423 でお示ししたファイルをemathfigtoeps 0.05.4
> に通すと、golfer.eps が見つからないと言われてしまいます。
> あ、golfer.eps は、タイプセットする tex ファイルと同じ
> フォルダに置いてあります。
これは emathcutfig.pl の仕様です.
# このスクリプトはやっつけです(泣)
デフォルトですと,psfiles ディレクトリ内で,
makeeps.sh(or .bat) を走らしますので,
psfiles ディレクトリに golfer.eps がないのでそういう文句を言われます.
従いまして,このような外部の .eps の読み込みには未対応対応です.
応急処置として,2 とおりあります.
1. emathfigtoeps.sh(or .bat) で,makeeps.sh (or .bat) を走らす直前に,
*.eps を psfiles へコピーするように修正を施す.
emathfigtoeps.sh ですと,
----------
perl $emathcutfig $texfile $psdir
chmod 755 $psdir/makeeps.sh
cd $psdir; ./makeeps.sh
----------
となっているところを,
----------
perl $emathcutfig $texfile $psdir
chmod 755 $psdir/makeeps.sh
cp *.eps $psdir/
cd $psdir; ./makeeps.sh
----------
とすれば,とりあえずいけます.
2. ただ単に埋め込んだ .eps だけ欲しいのが目的なら,一時的に以下のようにしておく.
# emath 図環境だけをまとめた別ファイルを作っておくのも一つの手です.
----------
%% res423.tex
\documentclass{jarticle}
\usepackage{emathP}
\begin{document}
\begin{zahyou*}[ul=1cm](0,8)(0,5)%
% \put(2,0){\includegraphics[width=4cm]{golfer.eps}}
\put(2,0){\includegraphics[width=4cm]{../golfer.eps}}
\Put{(0,2)}{ゴルファー}
\end{zahyou*}%
\end{document}
----------
▼関連発言
│
└◆355:Fun emath! の移行および emathfigtoeps の更新 [munepi] 03/19 03:34
├◆356:Re:Fun emath! の移行および emathfigtoeps の更新 [tDB] 03/19 08:07
├◆423:emathfigtoeps の仕様について [kiwi] 09/02 16:26
│└◆424:Re:emathfigtoeps の仕様について [kiwi] 09/02 16:30
│ ├◆425:Re[2]:emathfigtoeps の仕様について [munepi] 09/02 17:32
│ │└◆428:Re[3]:emathfigtoeps の仕様について [kiwi] 09/05 11:02
│ └◆426:--- [---] 09/02 17:38
│ └◆427:--- [---] 09/02 17:44
└◆429:質問:emathfigtoeps のインストールのしかた [kiwi] 09/05 11:22
└◆430:Re:質問:emathfigtoeps のインストールのしかた [kiwi] 09/05 13:25
└◆431:解決:emathfigtoeps のインストールのしかた [kiwi] 09/05 22:44
└◆432:Re:解決:emathfigtoeps のインストールのしかた [munepi] 09/06 00:59<-last