こうすれば図が…


普通のeps入れ!

Inkscapeで書いたepsとかは
\begin{figure}[h]
\hfil
%\resizebox{!}{5cm}{% 大きさ微調整
\includegraphics{fig/foo.eps}
%}
\hfil
\caption{foo}
\label{foo}
\end{figure}
でうまくいく。

おとなしくtpxの図入れ!

これで入るはず。
\begin{figure}[h]
  \setlength{\unitlength}{0.05 mm}%
\hfil
\resizebox{!}{5cm}{%
% ここから
  \begin{picture}(1000,1000)(0,0)
  \put(0,0){\includegraphics{fig/foo.eps}}
  \end{picture}%
% ここまでをtpxからコピペ
}
\hfil
  \setlength{\unitlength}{1pt}%
\caption{foo}
\label{fig:foo}
\end{figure}
図って難しい。

WinTpicの図も入れ!

\begin{figure}[h]
\hfil
% ここから
%WinTpicVersion3.08
\unitlength 1pt
\begin{picture}(100,100)(0,0)
% hogehoge
\end{picture}%
% ここまでをWinTpicからコピペ
\hfil
\caption{foo}
\label{fig:foo}
\end{figure}
よしよし…。



最終更新:2007年04月15日 15:31