子图分组图中的多个Tikz树

时间:2012-01-14 16:19:13

标签: tikz subfigure

如何将多个Tikz树放入子图分组图行中?如提供的屏幕截图所示,每个图/树都放在一个单独的行中。我猜树的宽度是> 50%的线宽,但我不知道可以调节tikz树形的宽度...

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}

编辑:请求将此主题移至tex.stackexchange.com - 抱歉,页面错误;)

1 个答案:

答案 0 :(得分:1)

删除行之间的空行

\end{minipage}}\qquad

\subfigure[s2]{

诀窍......