The following code (MWE)
\documentclass[a4paper]{article}
\usepackage{tikz}
\usepackage[absolute]{textpos}
\usetikzlibrary{external}
\tikzexternalize
\begin{document}
\begin{textblock}{4}[0,0](1.3,2.5)
\begin{center}
SOME TITLE TEXT SOME TITLE TEXT\\
SOME TITLE TEXT SOME TITLE TEXT
\end{center}
\end{textblock}
\thispagestyle{empty}
\mbox{} \clearpage %flush this page
\begin{figure}
\begin{tikzpicture}
\path[draw] (20mm,150mm) -- (20mm,250mm);
\path[draw] (100mm,150mm) -- (100mm,250mm);
\end{tikzpicture}
\end{figure}
\end{document}
is expected to produce two pages;
the first one containing eg some title text and the second one two parallel lines.
Instead in the second page the first one is appended (take a look at the picture)

I am using pdflatex from MikTeX 2.9 (updated) and compiling with -enable-write18.
What's wrong?


\tikzexternalize[prefix=tikz-external/]line to get this to compile, after which the second page only had the vertical lines. – Peter Grill Aug 11 '12 at 21:50-enable-write18(I think that when you are not using miktex its-shell-escape). – niels Aug 11 '12 at 21:57\tikzexternalizeI do see the behavior you describe. Needed to remove[prefix=tikz-external/]to get it to compile. – Peter Grill Aug 12 '12 at 4:44