i**n 发帖数: 1481 | 1 I use xfig to draw pictures for latex, after you finish the
picture, export it as *.epi file. Later you may use standard
way to include this image in the latex, and then generate it
in the *.dvi file.
\documentclass[a4paper,12pt,twoside]{article}
\usepackage{graphicx}
\begin{document}
This is a sample.
\begin{center}
\includegraphics[width=5cm]{drawing.epi(drawing.ps)}
\end{center}
End of sample.
\end{document}
I think there must be another way of doing it, but I never |
|