[DVIPDFMx] pgf/tikz

Jin-Hwan Cho jinhwan.cho at gmail.com
Tue May 25 13:29:22 KST 2010


One of the common template for PGF/TikZ would be as follows:

\documentclass{article}
\usepackage{tikz}
\begin{document}
...
\end{document}

In this case, three PGF drivers will be loaded automatically:

pdflatex --> pdftex driver
xelatex --> xetex driver
latex --> dvips driver

To use the dvipdfmx driver, the simplest way is to load graphicx.sty with the dvipdfmx option.

\documentclass{article}
\usepackage[dvipdfmx]{graphicx}
\usepackage{tikz}
\begin{document}
...
\end{document}

Or, you can load the dvipdfmx driver directly as follows:

\documentclass{article}
\def\pgfsysdriver{pgfsys-dvipdfmx.def}
\usepackage{tikz}
\begin{document}
...
\end{document}

On May 25, 2010, at 3:12 AM, Matthias Franz wrote:

> Hi ChoF,
> 
> I'm using pgf/tikz for the first time in a math paper. What do I
> have to do if I want to use it with dvipdfmx? I'm using TeXLive.
> 
> Thanks,
> --
> Matthias



More information about the dvipdfmx mailing list