What is the correct way to label and captionize a tkizpicture inside a tabular environment? (Since figures are not allowed inside a tabular)
Excerpt from my .tex:
\begin{tabular}{l r}
&
\begin{tikzpicture}
... % I want to label this tikzpicutre and give it a nice caption
\end{tikzpicture}
\end{tabular}
Outside the tabular I would have done it like this:
\begin{figure}
\begin{tikzpicture}
...
\end{tikzpicture}
\label{fig:...}\caption{...}
\end{figure}
Basically I want to create a page that looks like this:
----------------------------
|Text Text TKIZ TKIZ |
|TextText TKIZ TKIZ |
| Text Text Figure X: ...|
| |
|This text is under the |
|table and references above|
|TKIZ Figure with \ref{..} |
----------------------------
