ich versuche gerade, innerhalb einer Tabelle Bildunterschriften einzufügen. Es handelt sich um zwei Pyramiden, die ich nebeneinander darstellen möchte, jeweils mit Beschriftung. Also quasi in beiden Spalten eine Caption. Ich habe unterschiedliche Stellen und Befehle ausprobiert (\caption, \captionof, Umgebung mit \figure) aber leider funktioniert es nicht. Irgendwelche Tipps?
(Die Beschriftung UNTER der Tabelle funktioniert, es geht um die Beschriftung INNERHALB der beiden Spalten!)
Hier ein Minimalbeispiel:
\documentclass[pdftex]{scrbook} \usepackage{tikz} \usetikzlibrary{shapes,arrows} \usetikzlibrary{positioning} \begin{document} \begin{center} \begin{tabular}{ c c } \begin{tikzpicture}[scale=0.73] \def \h {7}; \def \f {.7}; \foreach \y in {0,1,2,3} { \def \w { \h*\f-\y*\f }; \def \v { \y*\f-\h*\f }; \draw (\v,\y) -- (\w,\y); } \draw (-\h*\f,0) -- (0,\h); \draw (\h*\f,0) -- (0,\h); \node at (0,0) [above] {Informaion}; \node at (0,1) [above] {Consultation}; \node at (0,2) [above] {Cooperation}; \node [align=center] at (0,3) [above] {Autonomous\\ acting}; \end{tikzpicture} & %\begin{figure} \begin{tikzpicture}[scale=0.73] \def \h {7}; \def \f {.7}; \foreach \y in {0,1,2,3} { \def \w { \h*\f-\y*\f }; \def \v { \y*\f-\h*\f }; \draw (\v,\y) -- (\w,\y); } \draw (-\h*\f,0) -- (0,\h); \draw (\h*\f,0) -- (0,\h); \node at (0,0) [above] {Informaion}; \node at (0,1) [above] {Share opinions and knowledge}; \node at (0,2) [above] {Shape decisions}; \node [align=center] at (0,3) [above] {Initiate projects}; \end{tikzpicture} \end{tabular} \captionof{table}{Participation pyramide} \label{fig:participation} \end{center} \end{document}