Question

How to put multiple Tikz trees in a subfigure-grouped figure row? As the provided screenshot indicates, every figure/ tree is put in a separate row. I guess that the tree width is > 50% of the line width, but I don't know one can regulate the width of a tikz tree figure...

enter image description here

\usepackage{subfigure}
\usepackage{tikz}
\usepackage{tikz-qtree}
\usetikzlibrary{trees}

\begin{figure}[H]

\subfigure[s1]{
\begin{minipage}[c][1\width]{0.5\textwidth}%

\begin{tikzpicture}
\Tree[.{root} ]
\end{tikzpicture}
\centering{}
\end{minipage}}\qquad

\subfigure[s2]{
\begin{minipage}[c][1\width]{0.5\textwidth}%
\centering{}
\begin{tikzpicture}[ ]

\Tree[.{another root} ]
\end{tikzpicture}
\end{minipage}}

   \caption{the caption}
 \end{figure}

EDIT: request to move this topic to tex.stackexchange.com - sorry, was on the wrong page ;)

Was it helpful?

Solution

Removing the blank line between the lines

\end{minipage}}\qquad

\subfigure[s2]{

does the trick...

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top