1

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

在此处输入图像描述

\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 - 抱歉,在错误的页面上;)

4

1 回答 1

1

删除行之间的空白行

\end{minipage}}\qquad

\subfigure[s2]{

诀窍...

于 2012-01-14T17:52:50.880 回答