围绕两幅乳胶图片,标题位于顶部

围绕两幅乳胶图片,标题位于顶部

所以我想要的是两个带有 LaTex 图片的方框(左边方框有 5 张,右边方框有 2 张),每个方框都有不同的标题。我甚至无法将文本放在 LaTex 图片的上方,否则它们会相互重叠或出现其他错误。

这是我的代码目前的样子:

    \documentclass[
  a4paper,               % A4-Papier
  twoside,               % zweiseitig
  DIV=12,                % Zwölfteilung der Seite
  BCOR=8mm,              % 8mm Korrektur für Bindung
  headinclude=true,      % Header hinzufügen
  footinclude=false,     % Footer nicht hinzufügen
  numbers=noenddot,      % keine Punkte nach Kapitelnummern
  headheight=40pt,       % Höhe des Header-Blocks
  11pt]  {scrartcl}      % Schriftgröße
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usepackage{amsfonts, amsmath, amsthm}
\usepackage{graphicx}
% Weitere interessante Pakete:
% stmaryrd, mathpazo, MnSymbol, shadethm, xy, setspace, listings, color,
% colortbl, hyperref, fancyvrb, moreverb, tocloft, ulem
% Keine Einrückung am Anfang eines Absatzes
\setlength{\parindent}{0pt}
\begin{document}
\section*{Aufgabe 1}
\subsection*{a)}
\begin{tikzpicture}
      \node (1) {1. //A//B/F};
\end{tikzpicture}
\begin{tikzpicture}[level 2/.style={sibling distance=1cm}] 
  \node (R1) {$\mathrm{A_1}$} 
                child {node  {$\mathrm{C_1}$}
                      child {node  {$\mathrm{B_1}$} 
                            child{node{$\mathrm{F_2}$}}}}; 
\end{tikzpicture}
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_2}$} 
                child {node  {$\mathrm{C_3}$}
                      child {node  {$\mathrm{B_2}$} 
                            child {node{$\mathrm{F_3}$}}
                      }
                }
                child {node{$\mathrm{G_1}$}
                      child {node{$\mathrm{B_3}$}
                            child {node{$\mathrm{F_3}$}
                            }
                      }
                };
\end{tikzpicture}
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_5}$} 
                child {node  {$\mathrm{Z_1}$}
                      child {node  {$\mathrm{B_6}$} 
                            child {node{$\mathrm{E_2}$}
                                child {node{$\mathrm{B_{10}}$}
                                      child {node{$\mathrm{F_5}$}
                                      }
                                }
                            }
                      }
                };
\end{tikzpicture}
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_6}$} 
                child {node  {$\mathrm{B_5}$}
                      child {node  {$\mathrm{F_4}$}}
                };
\end{tikzpicture}
\begin{tikzpicture}
      \node (1) {2. //A/C//B/E};
\end{tikzpicture}
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_2}$} 
                child {node  {$\mathrm{C_3}$}
                      child {node  {$\mathrm{B_2}$}
                            child {node  {$\mathrm{E_1}$}}
                      }
                };
\end{tikzpicture}
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_5}$} 
                child {node  {$\mathrm{Z_1}$}
                      child {node  {$\mathrm{B_6}$} 
                            child {node{$\mathrm{E_2}$}
                                child {node{$\mathrm{B_{10}}$}
                                      child {node{$\mathrm{F_5}$}
                                      }
                                }
                            }
                      }
                };
\end{tikzpicture}
\\
\\
3. Join aus 1. und 2. ergibt:
\begin{tikzpicture}                                     
  \node (R2) {$\mathrm{A_2}$} 
                child {node  {$\mathrm{C_3}$}
                      child {node  {$\mathrm{B_2}$}
                            child {node  {$\mathrm{E_1}$}}
                      }
                };
\end{tikzpicture}
\end{document}

如此简化,我在多个 tikz 图片中有一些树,它们目前彼此相邻显示,但我不希望将文本放在“图片组”的左下方,而是希望文本位于顶部并在相应的树周围有一个框。

我希望有人明白我的意思并能帮助我

相关内容