Hello,
When I use thumbs package with externalisation process, I got an error message:
! ==> Fatal error occurred, no output PDF file produced!
The example is:
\documentclass[12pt,francais]{article}
\let\oldaddtocontents\addtocontents %Onglets
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
%==== graphique
\usepackage{tikz}
\usetikzlibrary{external} %bibliothèque Tikz
\tikzexternalize
\usepackage{thumbs} %A decommenter pour voir le problème
\begin{document}
\begin{figure}
\centering
\tikzset{external/remake next}
\tikzsetnextfilename{test} % Nom du fichier de sortie de la figure
% \input{test.tex} % Source TikZ dans un fichier annexe, pour la lisibilité
\noindent\begin{tikzpicture}
\pagenumbering{arabic}
\draw circle (0.75);
\draw circle (5);
\end{tikzpicture}
\end{figure}
\end{document}
% Local Variables:
% LaTeX-command: "latex -shell-escape"
% End:
After asking for a solution on mathematex forum, it seems is should be a bug.
Best regards.
B
!! workaround was adding : \pagenumbering{arabic}. Please remove this line to see bug.