I'm using Debian/Squeeze with its texlive-full package installed.
After some success with TikZ for normal article-size figures, I got interested in using it for an a0 size poster.
As a (fairly) minimal standalone example of the problem I'm running into, the code below fails with a 'Dimension too large.' error if any of the indicated lines are uncommented (so basically when it tries to create an arc of half the page width or more, or thereabouts). I'm processing it with pdflatex.
\documentclass[onlymath]{beamer}
\usefonttheme{serif}
\usepackage[orientation=portrait,size=a0,scale=1.0]{beamerposter}
\usepackage{eulervm}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,positioning,matrix}
\begin{document}
\begin{frame}[t,fragile]{}
\begin{block}{Big TikZ Test}
\begin{center}
\begin{tikzpicture}
\tikzstyle{blk} = [rectangle,draw,text width=2in,text centered];
\tikzstyle{edge} = [draw,line width=3pt,black!50];
\matrix[row sep=1cm,column sep=1cm] {
\node[blk] (a) {A};
&
\node[blk] (b) {B};
&
\node[blk] (c) {C};
&
\node[blk] (d) {D};
&
\node[blk] (e) {E};
&
\node[blk] (f) {F};
&
\node[blk] (g) {G};
&
\node[blk] (h) {H};
&
\node[blk] (i) {I};
&
\node[blk] (j) {J};
\\
};
\path[edge] (j) edge [->,bend left=30] (i);
\path[edge] (j) edge [->,bend left=30] (h);
\path[edge] (j) edge [->,bend left=30] (g);
\path[edge] (j) edge [->,bend left=30] (f);
\path[edge] (j) edge [->,bend left=30] (e);
% Uncommenting any of these fails with 'Dimension too large.' error
\path[edge] (j) edge [->,bend left=30] (d);
% \path[edge] (j) edge [->,bend left=30] (c);
% \path[edge] (j) edge [->,bend left=30] (b);
% \path[edge] (j) edge [->,bend left=30] (a);
\end{tikzpicture}
\end{center}
\end{block}
\end{frame}
\end{document}
From other similar questions here, I understand there is some limited-range datatype involved, but none of the suggested code-fragment fixes (typically involving some inclusion of a pgf package and messing with some fp / fpu thing) seems to work for me (they generate their own errors).
Is this fixable through some modification of the above code and/or adopting a different version of these tools (e.g Debian/Wheezy - as yet untried - has PGF 2.10 while Squeeze is on 2.00), or is it just a fundamental limitation and I'm trying to push these tools too far ?
externalizeit, and then include it at the appropriate scale in yourbeamerposter. Of course, if it is to interact with other objects on the poster then this is null and void – cmhughes Jun 19 '12 at 04:04matrixandtext width, a workaround is not obvious ! – Alain Matthes Jun 19 '12 at 06:59