| ← Previous | ↑ Home | ↑ Programs | → Next |
Wxd2lat converts wxdkdraw drawings to vector graphics formats used in LaTeX/pdfLaTeX environments.
To produce a PDF+TeX file pair (x.pdf and x.tex) from the x.wxd file:
wxd2lat -lpdf x.wxd
To include the image in a LaTeX document you want to process with pdflatex:
\begin{figure}%
{\centering%
\input{x.tex}\caption{My image}\label{fig:my-image}%
}%
\end{figure}
To produce a EPS+TeX file pair (x.eps and x.tex) from the x.wxd file:
wxd2lat -leps x.wxd
To include the image in a LaTeX document you want to process with LaTeX/dvixxx
\begin{figure}%
{\centering%
\input{x.tex}\caption{My image}\label{fig:my-image}%
}%
\end{figure}
To produce a TeX file x.tex from the x.wxd file:
wxd2lat -ltex x.wxd
To include the image in a LaTeX document:
\begin{figure}%
{\centering%
\input{x.pgf}\caption{My image}\label{fig:my-image}%
}%
\end{figure}
In the preamble use
\usepackage{pgfcore}
To produce a standalone PDF file x.pdf from the x.wxd file:
wxd2lat -ltex x.wxd
pdflatex x
Alternatively you can use
wxd2lat -lpdf x.wxd
pdflatex x
instead.
The [gxhints:wiki:Home] page shows how to convert from wxd to eps, pdf, svg, png, jpeg, ico, and xpm.
See the [wxd2lat manual] for detailed information.
| ← Previous | ↑ Home | ↑ Programs | → Next |
Wiki: Home
Wiki: wxd2lat manual
Wiki: wxdkdraw manual
Wiki: wxdkdraw
gxhints - Graphics conversion hints: Wiki: Home