[fptex] insertion image - compatibilité windvi/dviwin 2.9

Fabrice Popineau Fabrice.Popineau@supelec.fr
08 Jun 2001 11:42:13 +0200


* Renaud Devillairs <r.devillairs@infonie.fr> writes:

> Comment faire pour insérer une image au format autre que .ps ou .eps
> avec windvi ?

You can insert wmf/emf or bmp images in dvi files and windvi will
display them. You just need to use the standard graphicx package. Have
a look at texmf/doc/windvi/Examples/wtest.tex

\DeclareGraphicsRule{.emf}{bmp}{}{}
\DeclareGraphicsRule{.wmf}{bmp}{}{}

...

\begin{figure}[ht]
  \centering\includegraphics[width=79.34mm,height=40mm]{world.emf}
  \caption{Some \texttt{emf} file.}
\end{figure}


> Comment créer une image .ps ou .eps ?  Comment faire pour que mes
> anciens fichier .tex puissent être modifier (facilement) pour être
> visualisable avec windvi ?

Search for wmf2eps ... Another answer is to print to some PS printer,
redirect to disk file, configure the printer driver to output EPS, and
maybe you will still have to crop to the (true) bounding box by hand.

Fabrice