I have the following code.
I cannot for the life of me find a way to lay the table under the pink figure ..

\documentclass{article}
\usepackage[english]{babel}
\usepackage{tikz}
\usetikzlibrary{arrows,automata}
\usepackage{adjustbox}
\begin{document}
\begin{adjustbox}{center}
\begin{tikzpicture}[->, >=stealth', shorten >= 2pt, auto, node distance=8cm, thick]
\tikzstyle{every edge}=[draw=black,thick]
\tikzstyle{every state}=[fill=white, draw=black, thick, text=black, scale=1]
\node[state] (1) {\tikz \draw[->,very thick] (0,1) -- (1,0);};
\path (1) edge [loop left] node[left] {
\fbox{\scalebox{.5}{\tikz \filldraw[draw=red,fill=red!20] rectangle (3,3);}}
\\
\\
\begin{tabular}[b]{ll}
p: 78\%&\\[2ex]
$\mu$: -7\% & $\sigma$: 7\%\\
$\alpha$: 0.38 & N: 11977
\end{tabular}
} (1);
\end{tikzpicture}\end{adjustbox}
\end{document}
any help? thx ! :-)
tabular(amongst other things). – Werner Aug 13 '13 at 05:58scalebox,fbox) and use tikz for that. You can then draw the rectangle with a node command usingminimum height/widthand name the node\node(box)[draw=red,fill=red!20,minimum height=3cm, minimum width=3cm]{};You wrap the table in a node of its own, which you can then position easily (e.g.\node [below=0 of box] {\begin{tabular} ...}) anyway you want. – ted Aug 13 '13 at 07:33