From 253b5e0069fa1f3dbaa31d04f495634040722687 Mon Sep 17 00:00:00 2001
From: Florian Unger <florian.unger@fau.de>
Date: Sat, 11 Jun 2022 19:26:12 +0200
Subject: [PATCH] make code more readable

---
 103_Elementare_Datenstrukturen.tex | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/103_Elementare_Datenstrukturen.tex b/103_Elementare_Datenstrukturen.tex
index 489f87d..de82e13 100644
--- a/103_Elementare_Datenstrukturen.tex
+++ b/103_Elementare_Datenstrukturen.tex
@@ -77,10 +77,8 @@ Wir geben daher später keine Laufzeiten für das Einfügen oder Entfernen von E
   \begin{tikzpicture}[box/.style = {draw, minimum size=9mm, inner sep=0pt, outer sep=0pt, anchor=center},]
     \matrix (array) [matrix of nodes, nodes={box}, column sep=-\pgflinewidth, inner sep=0pt]
     {
-              &                                  &            & $\mathcal{A}[0]$  & $\mathcal{A}[1]$  & \quad $\dotsm$
-              \quad \vphantom{3} & \enspace  $\mathcal{A}[n-1]$ \enspace & \\
-      $d_0 $  & \quad $\dots$ \quad \vphantom{3} & $d_{s-1}$  & $d_s$             & $d_{s+1}$         & \quad $\dotsm$
-      \quad \vphantom{3} & \quad $d_{s+n-1}$ \quad        & \quad $\dots$ \quad \vphantom{3} \\
+              &                                  &            & $\mathcal{A}[0]$  & $\mathcal{A}[1]$  & \quad $\dotsm$  \quad \vphantom{3} & \enspace  $\mathcal{A}[n-1]$ \enspace & \\
+      $d_0 $  & \quad $\dots$ \quad \vphantom{3} & $d_{s-1}$  & $d_s$             & $d_{s+1}$         & \quad $\dotsm$  \quad \vphantom{3} & \quad $d_{s+n-1}$ \quad        & \quad $\dots$ \quad \vphantom{3} \\
     };
   \end{tikzpicture}
   \caption{Ein Array $\mathcal{A}$ von Länge $n$ mit offset $s$ in $\mathcal{M}$.}
-- 
GitLab