diff options
author | hanemile <emile.hansmaennel@gmail.com> | 2018-03-07 21:04:23 +0100 |
---|---|---|
committer | hanemile <emile.hansmaennel@gmail.com> | 2018-03-07 21:04:23 +0100 |
commit | 39ef28af054ec4d06f25aa9c94bcfeaaadc27f41 (patch) | |
tree | d0b9bc6ad1365bb966192501c52ed49c0375d9ce /pres/plakat | |
parent | 38166a2e529de646f8143d02da57ac52d468b421 (diff) |
presentation (posters)
Diffstat (limited to 'pres/plakat')
42 files changed, 4556 insertions, 0 deletions
diff --git a/pres/plakat/docs/abstract.tex b/pres/plakat/docs/abstract.tex new file mode 100644 index 0000000..78e8ee1 --- /dev/null +++ b/pres/plakat/docs/abstract.tex @@ -0,0 +1,32 @@ +\begin{abstract} + + Das Ziel meines Projektes war es, Galaxien drei-dimensional zu + visualisieren. + Dazu verwendete ich das sogenannte ''Navarro-Frenk-White''' Profil als + Dichtefunktion in Kombination mit der Random-Sampling Methode zum Generieren + von Koordinaten. + \par + Die Generierung der Koordinaten hat jedoch ein Problem: Es ist extrem + rechenaufwendig. Um dieses Problem zu lösen, habe ich mehrere Methoden zur + Optimierung angewendet, darunter die Nutzung von Lookup-Tabellen und die + Verwendung von mehreren Computer-Rechenkernen. + \par + Im Verlauf des Projektes habe ich viel Neues dazugelernt, darunter die + Handhabung mit großen Datenmengen und die Organisation eines größeren Projektes, + jedoch auch mit vielen tiefer gehenden Funktionen und Bibliotheken + in der Programmiersprache Python umzugehen. + +\end{abstract} + + +\vspace{0.5cm} +\setlength{\fboxsep}{10pt} +\fbox{ + \parbox{0.95\linewidth}{ + An das Praktikum im Astronomischen Recheninstitut in Heidelberg gelangte + ich, indem ich mein Jugend Forscht Projekt aus dem letztem Jahr (Satellite + Computation), auf der Social-Media Plattform Reddit hochgeladen habe, wonach + mich der Doktorand Tim Tugendhat anschrieb, ob ich Interesse an einem + Praktikum hätte, das ich im Sommer 2017 absolviert habe. + } +} diff --git a/pres/plakat/docs/bigo.tex b/pres/plakat/docs/bigo.tex new file mode 100644 index 0000000..bf02951 --- /dev/null +++ b/pres/plakat/docs/bigo.tex @@ -0,0 +1,16 @@ +\section*{Rechenaufwand (n-Körper Problem)} + +\begin{equation} + O(n) = n^2 \quad \Rightarrow \quad O(n) = n \cdot log(n) +\end{equation} + +Um die Kräfte die zwischen allen Sternen in einer Galaxie wirken zu berechnen +werden \( n^2 \) Rechenschritte benötigt (\( n \) entspricht der Anzahl der) +Sterne. + +\vspace{-0.25cm} +\begin{center} +\includegraphics[width=0.8\linewidth]{figs/bigo_large} +\caption{Orange \( n^2 \), Blau \( n \log(n) \)} +\label{fig:bigo} +\end{center}\vspace{-1.25cm} diff --git a/pres/plakat/docs/danksagung.tex b/pres/plakat/docs/danksagung.tex new file mode 100644 index 0000000..02c7da8 --- /dev/null +++ b/pres/plakat/docs/danksagung.tex @@ -0,0 +1,15 @@ +\section*{Danksagungen} + +Hier möchte ich mich bei \( \dots \) +\begin{itemize} + \item[\( \dots \)] Tim Tugendhat + \item[\( \dots \)] Konstantin Bosbach + \item[\( \dots \)] Jörg Thar + \item[\( \dots \)] Martin Dessauer +\end{itemize} +bedanken, denn ohne sie wäre die Durchführung des Projektes nicht möglich +gewesen. + +% Tim Tugendhat und Konstantin Bosbach bedanken ohne die +% das Praktikum in Heidelberg nicht möglich gewesen wäre, welches mir den einstieg +% in das Thema erst ermöglicht hat. diff --git a/pres/plakat/docs/ergebnisse.tex b/pres/plakat/docs/ergebnisse.tex new file mode 100644 index 0000000..804079e --- /dev/null +++ b/pres/plakat/docs/ergebnisse.tex @@ -0,0 +1,7 @@ +\section*{Ergebnisse} + +\begin{center}\vspace{0.5cm} +\includegraphics[width=0.8\linewidth]{figs/galaxy_flammkuchenblech} +\caption{ Diese generierte Galaxie bestehend aus \( 680.000 \) Sternen} +\label{fig:galaxy_flammkuchenblech} +\end{center}\vspace{-1cm} diff --git a/pres/plakat/docs/gan.tex b/pres/plakat/docs/gan.tex new file mode 100644 index 0000000..b406fbb --- /dev/null +++ b/pres/plakat/docs/gan.tex @@ -0,0 +1,7 @@ +\section*{Generative Adversarial Neural Networks} + +\begin{center}\vspace{0.5cm} +\includegraphics[width=1\linewidth]{figs/galaxy_gan.png} +\caption{Aufbau eines GAN Netzwerkes zum Generieren von Galaxien} +\label{fig:galaxy_gan} +\end{center}\vspace{-1cm} diff --git a/pres/plakat/docs/hauptziele.tex b/pres/plakat/docs/hauptziele.tex new file mode 100644 index 0000000..b37310e --- /dev/null +++ b/pres/plakat/docs/hauptziele.tex @@ -0,0 +1,17 @@ +\section*{Hauptziele} + +\begin{enumerate} +\item Generieren von elliptischen Galaxien mithilfe des Narvarro-Frenk-White-Profils in Verbindung mit der Random-Sampling Methode + +\item Verbesserung des Generierungsprozesses mithilfe verschiedener Methoden +\begin{itemize} + \item Lookup-Tabellen + \item Unterteilung der Galaxie in verschiedene Zellen + \item Effizientere Speichernutzung +\end{itemize} + +\item Generierung von Dunkle-Materie-Halos und Spiralgalaxien + +\item Nutzung von konkurrierenden neuronalen Netzen zum unbeaufsichtigten +Generieren von Galaxien und deren Anpassung an ''echte`` Galaxien. +\end{enumerate} diff --git a/pres/plakat/docs/lookup.tex b/pres/plakat/docs/lookup.tex new file mode 100644 index 0000000..da37fe1 --- /dev/null +++ b/pres/plakat/docs/lookup.tex @@ -0,0 +1,33 @@ +\section*{Lookup Tabellen} + +Um den Rechenaufwand der beim Berechnen eines Wertes aus dem NFW-Profil +entsteht zu mindern, wird die Funktion \( \rho(r)\) im Vorhinein +berechnet und zum Weiterverwenden gespeichert: + +\lstset{ + frame=single, + % numbers=left, + title=2e8.csv \qquad (\( \sim \) 500 MB) +} + +\begin{lstlisting} +0, 1477.1586582000994 +1, 1477.0588424006478 +2, 1476.9590343243835 +3, 1476.8592346184294 +4, 1476.7594429495975 +... +19999995, 0.0028544345590963767 +19999996, 0.0028544345175450904 +19999997, 0.0028544344759938085 +19999998, 0.002854434434442531 +19999999, 0.002854434392891257 +\end{lstlisting} + +Möchte man zu einem Wert \( r \) aus der Funktion die Wahrscheinlichkeit +\( \rho(r) \) erhalten, muss man nur noch aus der Tabelle ablesen. +\par +Hier entsteht jedoch ein Problem: Alle Prozesse müssen aus dieser Tabelle die +Werte auslesen, weshalb sie für jeden Prozess einmal in den Arbeitsspeicher +geladen werden müssen. Dies lässt sich jedoch durch effizientes Parallelisieren +umgehen. diff --git a/pres/plakat/docs/methoden.tex b/pres/plakat/docs/methoden.tex new file mode 100644 index 0000000..de5af64 --- /dev/null +++ b/pres/plakat/docs/methoden.tex @@ -0,0 +1,9 @@ +\section*{Methoden} + +\begin{itemize} + \item Random Sampling des NFW-Profils + \item Generierung von Lookup-Tabellen + \item Code Vectorization + \item Parallelization + \item Kräfteberechnung mithilfe der universellen Gravitationsformel +\end{itemize} diff --git a/pres/plakat/docs/nutzen.tex b/pres/plakat/docs/nutzen.tex new file mode 100644 index 0000000..e050fde --- /dev/null +++ b/pres/plakat/docs/nutzen.tex @@ -0,0 +1,11 @@ +\section*{Nutzen} + +\begin{itemize} + \item Visualisierung zur Verbesserung der Vorstellung von Galaxien + + \item Möglichkeit, sich eine Galaxie aus allen Perspektiven + anzusehen + + \item Modell einer Galaxie, welches genutzt werden kann, um Vorhersagen + für die echte Galaxie zu treffen +\end{itemize} diff --git a/pres/plakat/docs/random_sampling_nfw.tex b/pres/plakat/docs/random_sampling_nfw.tex new file mode 100644 index 0000000..d276540 --- /dev/null +++ b/pres/plakat/docs/random_sampling_nfw.tex @@ -0,0 +1,28 @@ +\section*{Random-Sampling des NFW Profils} + +Beim Random-Sampling wird eine zufällige Koordinate generiert und dessen +Abstand zum Mittelpunkt der Galaxie \( r \) berechnet. +Diesen Wert \( r \) setzt man in das NFW-Profil ein, um eine Wahrscheinlichkeit +\( \phi = \rho(r) \) zu berechnen, mit der der Stern generiert wird. +Es wird ein zufälliger Wert \( s \) im Intervall \( [\rho_{min};~\rho_{max}] \) +generiert. +Gilt \( s < r \), dann werden die Koordinaten des Sterns beibehalten, +ansonsten werden neue Koordinaten generiert und der Prozess wird wiederholt. + +\begin{center}\vspace{-1cm} +\begin{equation} \label{eq:NFW_profile} + \rho_{NFW}(r) = \frac{ 1 }{ \sqrt{ 2 \pi } \cdot \sigma } \cdot + \exp \left( \frac{ -\phi(r) }{ \sigma^{ 2 } } \right) +\end{equation} + +\begin{equation} + \phi(r) = \frac{ 4\pi \cdot G \cdot f_{0} \cdot R_{s}^3 }{ r } \cdot + ln{ \left( 1 + \frac{ r }{ R_{s} } \right) } +\end{equation} +\end{center}%\vspace{0.5cm} +% +\begin{center}\vspace{-0.5cm} +\includegraphics[width=0.8\linewidth]{figs/1e6_6} +\caption{Der entsprechende Funktionsgraph zum NFW-Profil} +\label{fig:lookup_NFW} +\end{center}\vspace{-1cm} diff --git a/pres/plakat/docs/rechner.tex b/pres/plakat/docs/rechner.tex new file mode 100644 index 0000000..993b2a0 --- /dev/null +++ b/pres/plakat/docs/rechner.tex @@ -0,0 +1,11 @@ +\section*{Genutzte Rechner} + +{\setlength{\extrarowheight}{10pt}% +\begin{tabular}{l | l | l | l} + Bezeichnung & Kerne & Threads & Taktrate \\[0.25ex] \hline + Acer Laptop & 2 & 4 & 3.1 GHz \\ + Heidelberg Cluster & 44 & 88 & \( \sim \) 2.5 GHz \\ + Flammkuchenblech & 6 & 24 & 2.5 GHz \\ + +\end{tabular} +} diff --git a/pres/plakat/docs/wirkende_kraefte.tex b/pres/plakat/docs/wirkende_kraefte.tex new file mode 100644 index 0000000..a703696 --- /dev/null +++ b/pres/plakat/docs/wirkende_kraefte.tex @@ -0,0 +1,9 @@ +\section*{Kräfte die auf einen Stern wirken} + +Um die Gesamtkraft die auf einen Stern wirkt zu berechnen, habe ich +das Newton'sche Gravitationsgesetz in der folgenden Form verwendet: + +\begin{equation} + \vec{F_1} = G \cdot m_1 \cdot \sum_{i=2}^n m_i \cdot + \frac{\vec{r_i} - \vec{r_1}}{| \vec{r_i} - \vec{r_1} |^3} +\end{equation}\vspace{-1cm} diff --git a/pres/plakat/docs/zellen.tex b/pres/plakat/docs/zellen.tex new file mode 100644 index 0000000..1bc38b4 --- /dev/null +++ b/pres/plakat/docs/zellen.tex @@ -0,0 +1,14 @@ +\section*{Unterteilung der Galaxie in Zellen} + +Um den Rechenaufwand, der bei der Berechnung der wirkenden Kräfte entsteht, +zu minimieren, wird die Galaxie in verschiedene Zellen unterteilt: + +\begin{center}\vspace{1cm} +\includegraphics[width=0.8\linewidth]{figs/cells_2D} +\label{fig:galaxy_cells} +\end{center} + +\begin{center} +\includegraphics[width=1\linewidth]{figs/cells} +\label{fig:galaxy_cells_3d} +\end{center}\vspace{-3cm} diff --git a/pres/plakat/docs/zukunft.tex b/pres/plakat/docs/zukunft.tex new file mode 100644 index 0000000..f36b0ac --- /dev/null +++ b/pres/plakat/docs/zukunft.tex @@ -0,0 +1,12 @@ +\section*{Zukunft} +\begin{itemize} + \item OpenMP + \item OpenACC statt CUDA oder OpenCL + \item Code Vectorization + \item Shared Memory + \begin{itemize} + \item[\( \rightarrow \)] Distributed Memory + \end{itemize} + \item Hilbert Spiral + \item Nutzung des L1, L2 und L3 caches +\end{itemize} diff --git a/pres/plakat/figs/.directory b/pres/plakat/figs/.directory new file mode 100644 index 0000000..21cba93 --- /dev/null +++ b/pres/plakat/figs/.directory @@ -0,0 +1,5 @@ +[Dolphin] +PreviewsShown=true +Timestamp=2018,2,27,18,36,50 +Version=4 +ViewMode=1 diff --git a/pres/plakat/figs/1e6_6.png b/pres/plakat/figs/1e6_6.png new file mode 100644 index 0000000..2a99cbf --- /dev/null +++ b/pres/plakat/figs/1e6_6.png Binary files differdiff --git a/pres/plakat/figs/Hd_logo_standard_16cm_rgb.png b/pres/plakat/figs/Hd_logo_standard_16cm_rgb.png new file mode 100644 index 0000000..61becee --- /dev/null +++ b/pres/plakat/figs/Hd_logo_standard_16cm_rgb.png Binary files differdiff --git a/pres/plakat/figs/Jugend_forscht.jpg b/pres/plakat/figs/Jugend_forscht.jpg new file mode 100644 index 0000000..6d23e96 --- /dev/null +++ b/pres/plakat/figs/Jugend_forscht.jpg Binary files differdiff --git a/pres/plakat/figs/bigo.png b/pres/plakat/figs/bigo.png new file mode 100644 index 0000000..10dccac --- /dev/null +++ b/pres/plakat/figs/bigo.png Binary files differdiff --git a/pres/plakat/figs/bigo.svg b/pres/plakat/figs/bigo.svg new file mode 100644 index 0000000..ada4dfc --- /dev/null +++ b/pres/plakat/figs/bigo.svg @@ -0,0 +1,609 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" + "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<!-- Created with matplotlib (http://matplotlib.org/) --> +<svg height="345pt" version="1.1" viewBox="0 0 460 345" width="460pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <defs> + <style type="text/css"> +*{stroke-linecap:butt;stroke-linejoin:round;} + </style> + </defs> + <g id="figure_1"> + <g id="patch_1"> + <path d="M 0 345.6 +L 460.8 345.6 +L 460.8 0 +L 0 0 +z +" style="fill:#ffffff;"/> + </g> + <g id="axes_1"> + <g id="patch_2"> + <path d="M 57.6 307.584 +L 414.72 307.584 +L 414.72 41.472 +L 57.6 41.472 +z +" style="fill:#ffffff;"/> + </g> + <g id="matplotlib.axis_1"> + <g id="xtick_1"> + <g id="line2d_1"> + <defs> + <path d="M 0 0 +L 0 3.5 +" id="m12f215cda0" style="stroke:#000000;stroke-width:0.8;"/> + </defs> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="73.832727" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_1"> + <!-- 0 --> + <defs> + <path d="M 31.78125 66.40625 +Q 24.171875 66.40625 20.328125 58.90625 +Q 16.5 51.421875 16.5 36.375 +Q 16.5 21.390625 20.328125 13.890625 +Q 24.171875 6.390625 31.78125 6.390625 +Q 39.453125 6.390625 43.28125 13.890625 +Q 47.125 21.390625 47.125 36.375 +Q 47.125 51.421875 43.28125 58.90625 +Q 39.453125 66.40625 31.78125 66.40625 +z +M 31.78125 74.21875 +Q 44.046875 74.21875 50.515625 64.515625 +Q 56.984375 54.828125 56.984375 36.375 +Q 56.984375 17.96875 50.515625 8.265625 +Q 44.046875 -1.421875 31.78125 -1.421875 +Q 19.53125 -1.421875 13.0625 8.265625 +Q 6.59375 17.96875 6.59375 36.375 +Q 6.59375 54.828125 13.0625 64.515625 +Q 19.53125 74.21875 31.78125 74.21875 +z +" id="DejaVuSans-30"/> + </defs> + <g transform="translate(70.651477 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="xtick_2"> + <g id="line2d_2"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="139.419504" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_2"> + <!-- 20 --> + <defs> + <path d="M 19.1875 8.296875 +L 53.609375 8.296875 +L 53.609375 0 +L 7.328125 0 +L 7.328125 8.296875 +Q 12.9375 14.109375 22.625 23.890625 +Q 32.328125 33.6875 34.8125 36.53125 +Q 39.546875 41.84375 41.421875 45.53125 +Q 43.3125 49.21875 43.3125 52.78125 +Q 43.3125 58.59375 39.234375 62.25 +Q 35.15625 65.921875 28.609375 65.921875 +Q 23.96875 65.921875 18.8125 64.3125 +Q 13.671875 62.703125 7.8125 59.421875 +L 7.8125 69.390625 +Q 13.765625 71.78125 18.9375 73 +Q 24.125 74.21875 28.421875 74.21875 +Q 39.75 74.21875 46.484375 68.546875 +Q 53.21875 62.890625 53.21875 53.421875 +Q 53.21875 48.921875 51.53125 44.890625 +Q 49.859375 40.875 45.40625 35.40625 +Q 44.1875 33.984375 37.640625 27.21875 +Q 31.109375 20.453125 19.1875 8.296875 +z +" id="DejaVuSans-32"/> + </defs> + <g transform="translate(133.057004 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-32"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="xtick_3"> + <g id="line2d_3"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="205.006281" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_3"> + <!-- 40 --> + <defs> + <path d="M 37.796875 64.3125 +L 12.890625 25.390625 +L 37.796875 25.390625 +z +M 35.203125 72.90625 +L 47.609375 72.90625 +L 47.609375 25.390625 +L 58.015625 25.390625 +L 58.015625 17.1875 +L 47.609375 17.1875 +L 47.609375 0 +L 37.796875 0 +L 37.796875 17.1875 +L 4.890625 17.1875 +L 4.890625 26.703125 +z +" id="DejaVuSans-34"/> + </defs> + <g transform="translate(198.643781 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-34"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="xtick_4"> + <g id="line2d_4"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="270.593058" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_4"> + <!-- 60 --> + <defs> + <path d="M 33.015625 40.375 +Q 26.375 40.375 22.484375 35.828125 +Q 18.609375 31.296875 18.609375 23.390625 +Q 18.609375 15.53125 22.484375 10.953125 +Q 26.375 6.390625 33.015625 6.390625 +Q 39.65625 6.390625 43.53125 10.953125 +Q 47.40625 15.53125 47.40625 23.390625 +Q 47.40625 31.296875 43.53125 35.828125 +Q 39.65625 40.375 33.015625 40.375 +z +M 52.59375 71.296875 +L 52.59375 62.3125 +Q 48.875 64.0625 45.09375 64.984375 +Q 41.3125 65.921875 37.59375 65.921875 +Q 27.828125 65.921875 22.671875 59.328125 +Q 17.53125 52.734375 16.796875 39.40625 +Q 19.671875 43.65625 24.015625 45.921875 +Q 28.375 48.1875 33.59375 48.1875 +Q 44.578125 48.1875 50.953125 41.515625 +Q 57.328125 34.859375 57.328125 23.390625 +Q 57.328125 12.15625 50.6875 5.359375 +Q 44.046875 -1.421875 33.015625 -1.421875 +Q 20.359375 -1.421875 13.671875 8.265625 +Q 6.984375 17.96875 6.984375 36.375 +Q 6.984375 53.65625 15.1875 63.9375 +Q 23.390625 74.21875 37.203125 74.21875 +Q 40.921875 74.21875 44.703125 73.484375 +Q 48.484375 72.75 52.59375 71.296875 +z +" id="DejaVuSans-36"/> + </defs> + <g transform="translate(264.230558 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-36"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="xtick_5"> + <g id="line2d_5"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="336.179835" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_5"> + <!-- 80 --> + <defs> + <path d="M 31.78125 34.625 +Q 24.75 34.625 20.71875 30.859375 +Q 16.703125 27.09375 16.703125 20.515625 +Q 16.703125 13.921875 20.71875 10.15625 +Q 24.75 6.390625 31.78125 6.390625 +Q 38.8125 6.390625 42.859375 10.171875 +Q 46.921875 13.96875 46.921875 20.515625 +Q 46.921875 27.09375 42.890625 30.859375 +Q 38.875 34.625 31.78125 34.625 +z +M 21.921875 38.8125 +Q 15.578125 40.375 12.03125 44.71875 +Q 8.5 49.078125 8.5 55.328125 +Q 8.5 64.0625 14.71875 69.140625 +Q 20.953125 74.21875 31.78125 74.21875 +Q 42.671875 74.21875 48.875 69.140625 +Q 55.078125 64.0625 55.078125 55.328125 +Q 55.078125 49.078125 51.53125 44.71875 +Q 48 40.375 41.703125 38.8125 +Q 48.828125 37.15625 52.796875 32.3125 +Q 56.78125 27.484375 56.78125 20.515625 +Q 56.78125 9.90625 50.3125 4.234375 +Q 43.84375 -1.421875 31.78125 -1.421875 +Q 19.734375 -1.421875 13.25 4.234375 +Q 6.78125 9.90625 6.78125 20.515625 +Q 6.78125 27.484375 10.78125 32.3125 +Q 14.796875 37.15625 21.921875 38.8125 +z +M 18.3125 54.390625 +Q 18.3125 48.734375 21.84375 45.5625 +Q 25.390625 42.390625 31.78125 42.390625 +Q 38.140625 42.390625 41.71875 45.5625 +Q 45.3125 48.734375 45.3125 54.390625 +Q 45.3125 60.0625 41.71875 63.234375 +Q 38.140625 66.40625 31.78125 66.40625 +Q 25.390625 66.40625 21.84375 63.234375 +Q 18.3125 60.0625 18.3125 54.390625 +z +" id="DejaVuSans-38"/> + </defs> + <g transform="translate(329.817335 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-38"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="xtick_6"> + <g id="line2d_6"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="401.766612" xlink:href="#m12f215cda0" y="307.584"/> + </g> + </g> + <g id="text_6"> + <!-- 100 --> + <defs> + <path d="M 12.40625 8.296875 +L 28.515625 8.296875 +L 28.515625 63.921875 +L 10.984375 60.40625 +L 10.984375 69.390625 +L 28.421875 72.90625 +L 38.28125 72.90625 +L 38.28125 8.296875 +L 54.390625 8.296875 +L 54.390625 0 +L 12.40625 0 +z +" id="DejaVuSans-31"/> + </defs> + <g transform="translate(392.222862 322.182437)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-31"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + </g> + <g id="matplotlib.axis_2"> + <g id="ytick_1"> + <g id="line2d_7"> + <defs> + <path d="M 0 0 +L -3.5 0 +" id="mc0ff716ce7" style="stroke:#000000;stroke-width:0.8;"/> + </defs> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="295.488"/> + </g> + </g> + <g id="text_7"> + <!-- 0 --> + <g transform="translate(44.2375 299.287219)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="ytick_2"> + <g id="line2d_8"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="246.121609"/> + </g> + </g> + <g id="text_8"> + <!-- 2000 --> + <g transform="translate(25.15 249.920828)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-32"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + <use x="190.869141" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="ytick_3"> + <g id="line2d_9"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="196.755218"/> + </g> + </g> + <g id="text_9"> + <!-- 4000 --> + <g transform="translate(25.15 200.554436)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-34"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + <use x="190.869141" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="ytick_4"> + <g id="line2d_10"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="147.388826"/> + </g> + </g> + <g id="text_10"> + <!-- 6000 --> + <g transform="translate(25.15 151.188045)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-36"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + <use x="190.869141" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="ytick_5"> + <g id="line2d_11"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="98.022435"/> + </g> + </g> + <g id="text_11"> + <!-- 8000 --> + <g transform="translate(25.15 101.821654)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-38"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + <use x="190.869141" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + <g id="ytick_6"> + <g id="line2d_12"> + <g> + <use style="stroke:#000000;stroke-width:0.8;" x="57.6" xlink:href="#mc0ff716ce7" y="48.656044"/> + </g> + </g> + <g id="text_12"> + <!-- 10000 --> + <g transform="translate(18.7875 52.455263)scale(0.1 -0.1)"> + <use xlink:href="#DejaVuSans-31"/> + <use x="63.623047" xlink:href="#DejaVuSans-30"/> + <use x="127.246094" xlink:href="#DejaVuSans-30"/> + <use x="190.869141" xlink:href="#DejaVuSans-30"/> + <use x="254.492188" xlink:href="#DejaVuSans-30"/> + </g> + </g> + </g> + </g> + <g id="line2d_13"> + <path clip-path="url(#pefb51d5f6c)" d="M 77.112066 295.488 +L 80.391405 295.453782 +L 83.670744 295.406648 +L 86.950083 295.351127 +L 90.229421 295.28937 +L 93.50876 295.222642 +L 96.788099 295.151781 +L 100.067438 295.077382 +L 103.346777 294.999889 +L 106.626116 294.919648 +L 109.905455 294.836935 +L 113.184793 294.751975 +L 116.464132 294.664955 +L 119.743471 294.576035 +L 123.02281 294.48535 +L 126.302149 294.393018 +L 129.581488 294.299143 +L 132.860826 294.203815 +L 136.140165 294.107115 +L 139.419504 294.009115 +L 142.698843 293.909881 +L 145.978182 293.80947 +L 149.257521 293.707938 +L 152.53686 293.605331 +L 155.816198 293.501696 +L 159.095537 293.397074 +L 162.374876 293.291502 +L 165.654215 293.185015 +L 168.933554 293.077647 +L 172.212893 292.969427 +L 175.492231 292.860385 +L 178.77157 292.750546 +L 182.050909 292.639936 +L 185.330248 292.528577 +L 188.609587 292.416493 +L 191.888926 292.303703 +L 195.168264 292.190227 +L 198.447603 292.076084 +L 201.726942 291.961292 +L 205.006281 291.845867 +L 208.28562 291.729824 +L 211.564959 291.61318 +L 214.844298 291.495947 +L 218.123636 291.378141 +L 221.402975 291.259773 +L 224.682314 291.140857 +L 227.961653 291.021405 +L 231.240992 290.901427 +L 234.520331 290.780934 +L 237.799669 290.659939 +L 241.079008 290.538449 +L 244.358347 290.416475 +L 247.637686 290.294027 +L 250.917025 290.171113 +L 254.196364 290.047742 +L 257.475702 289.923922 +L 260.755041 289.799661 +L 264.03438 289.674967 +L 267.313719 289.549847 +L 270.593058 289.42431 +L 273.872397 289.29836 +L 277.151736 289.172006 +L 280.431074 289.045254 +L 283.710413 288.91811 +L 286.989752 288.790581 +L 290.269091 288.662672 +L 293.54843 288.534388 +L 296.827769 288.405736 +L 300.107107 288.276722 +L 303.386446 288.147349 +L 306.665785 288.017624 +L 309.945124 287.887551 +L 313.224463 287.757136 +L 316.503802 287.626382 +L 319.78314 287.495295 +L 323.062479 287.363878 +L 326.341818 287.232137 +L 329.621157 287.100075 +L 332.900496 286.967697 +L 336.179835 286.835006 +L 339.459174 286.702007 +L 342.738512 286.568703 +L 346.017851 286.435098 +L 349.29719 286.301196 +L 352.576529 286.166999 +L 355.855868 286.032513 +L 359.135207 285.897739 +L 362.414545 285.762682 +L 365.693884 285.627344 +L 368.973223 285.491729 +L 372.252562 285.355839 +L 375.531901 285.219678 +L 378.81124 285.083249 +L 382.090579 284.946555 +L 385.369917 284.809598 +L 388.649256 284.672381 +L 391.928595 284.534907 +L 395.207934 284.397178 +L 398.487273 284.259198 +" style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/> + </g> + <g id="line2d_14"> + <path clip-path="url(#pefb51d5f6c)" d="M 73.832727 295.488 +L 77.112066 295.463317 +L 80.391405 295.389267 +L 83.670744 295.265851 +L 86.950083 295.093069 +L 90.229421 294.87092 +L 93.50876 294.599405 +L 96.788099 294.278523 +L 100.067438 293.908275 +L 103.346777 293.488661 +L 106.626116 293.01968 +L 109.905455 292.501333 +L 113.184793 291.93362 +L 116.464132 291.31654 +L 119.743471 290.650094 +L 123.02281 289.934281 +L 126.302149 289.169102 +L 129.581488 288.354556 +L 132.860826 287.490645 +L 136.140165 286.577366 +L 139.419504 285.614722 +L 142.698843 284.602711 +L 145.978182 283.541333 +L 149.257521 282.43059 +L 152.53686 281.270479 +L 155.816198 280.061003 +L 159.095537 278.80216 +L 162.374876 277.49395 +L 165.654215 276.136375 +L 168.933554 274.729433 +L 172.212893 273.273124 +L 175.492231 271.767449 +L 178.77157 270.212408 +L 182.050909 268.608 +L 185.330248 266.954226 +L 188.609587 265.251085 +L 191.888926 263.498579 +L 195.168264 261.696705 +L 198.447603 259.845466 +L 201.726942 257.94486 +L 205.006281 255.994887 +L 208.28562 253.995548 +L 211.564959 251.946843 +L 214.844298 249.848771 +L 218.123636 247.701333 +L 221.402975 245.504529 +L 224.682314 243.258358 +L 227.961653 240.962821 +L 231.240992 238.617917 +L 234.520331 236.223647 +L 237.799669 233.780011 +L 241.079008 231.287008 +L 244.358347 228.744639 +L 247.637686 226.152904 +L 250.917025 223.511802 +L 254.196364 220.821333 +L 257.475702 218.081499 +L 260.755041 215.292298 +L 264.03438 212.45373 +L 267.313719 209.565796 +L 270.593058 206.628496 +L 273.872397 203.641829 +L 277.151736 200.605796 +L 280.431074 197.520397 +L 283.710413 194.385631 +L 286.989752 191.201499 +L 290.269091 187.968 +L 293.54843 184.685135 +L 296.827769 181.352904 +L 300.107107 177.971306 +L 303.386446 174.540342 +L 306.665785 171.060011 +L 309.945124 167.530314 +L 313.224463 163.951251 +L 316.503802 160.322821 +L 319.78314 156.645025 +L 323.062479 152.917862 +L 326.341818 149.141333 +L 329.621157 145.315438 +L 332.900496 141.440176 +L 336.179835 137.515548 +L 339.459174 133.541554 +L 342.738512 129.518193 +L 346.017851 125.445466 +L 349.29719 121.323372 +L 352.576529 117.151912 +L 355.855868 112.931085 +L 359.135207 108.660893 +L 362.414545 104.341333 +L 365.693884 99.972408 +L 368.973223 95.554116 +L 372.252562 91.086457 +L 375.531901 86.569433 +L 378.81124 82.003041 +L 382.090579 77.387284 +L 385.369917 72.72216 +L 388.649256 68.007669 +L 391.928595 63.243813 +L 395.207934 58.43059 +L 398.487273 53.568 +" style="fill:none;stroke:#ff7f0e;stroke-linecap:square;stroke-width:1.5;"/> + </g> + <g id="patch_3"> + <path d="M 57.6 307.584 +L 57.6 41.472 +" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> + </g> + <g id="patch_4"> + <path d="M 414.72 307.584 +L 414.72 41.472 +" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> + </g> + <g id="patch_5"> + <path d="M 57.6 307.584 +L 414.72 307.584 +" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> + </g> + <g id="patch_6"> + <path d="M 57.6 41.472 +L 414.72 41.472 +" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/> + </g> + </g> + </g> + <defs> + <clipPath id="pefb51d5f6c"> + <rect height="266.112" width="357.12" x="57.6" y="41.472"/> + </clipPath> + </defs> +</svg> diff --git a/pres/plakat/figs/bigo_large.png b/pres/plakat/figs/bigo_large.png new file mode 100644 index 0000000..816f071 --- /dev/null +++ b/pres/plakat/figs/bigo_large.png Binary files differdiff --git a/pres/plakat/figs/cells.png b/pres/plakat/figs/cells.png new file mode 100644 index 0000000..51477e6 --- /dev/null +++ b/pres/plakat/figs/cells.png Binary files differdiff --git a/pres/plakat/figs/cells_2D.png b/pres/plakat/figs/cells_2D.png new file mode 100644 index 0000000..c4a99c5 --- /dev/null +++ b/pres/plakat/figs/cells_2D.png Binary files differdiff --git a/pres/plakat/figs/cells_2D.svg b/pres/plakat/figs/cells_2D.svg new file mode 100644 index 0000000..8f7afca --- /dev/null +++ b/pres/plakat/figs/cells_2D.svg @@ -0,0 +1,1242 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="210mm" + height="297mm" + viewBox="0 0 210 297" + version="1.1" + id="svg8" + inkscape:version="0.92.2 5c3e80d, 2017-08-06" + sodipodi:docname="cells_2D.svg"> + <defs + id="defs2" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2" + inkscape:cx="200.88312" + inkscape:cy="906.7042" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1920" + inkscape:window-height="1054" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="0" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.26458332" + id="rect4504" + width="71.815475" + height="71.815475" + x="34.962795" + y="29.392857" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="29.392857" + x="34.962795" + height="71.815475" + width="71.815475" + id="rect4521" + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.26458332" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#0000ff;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + id="rect4523" + width="35.866531" + height="35.866531" + x="34.896572" + y="29.326635" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="29.326635" + x="70.879906" + height="35.866531" + width="35.866531" + id="rect4540" + style="opacity:0.92000002;fill:#ffffff;stroke:#0000ff;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="65.309998" + x="34.896572" + height="35.866531" + width="35.866531" + id="rect4542" + style="opacity:0.92000002;fill:#ffffff;stroke:#0000ff;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.13213985" + id="rect4544" + width="35.866531" + height="35.866531" + x="70.879906" + y="65.309998" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="65.193169" + x="70.763107" + height="36.015163" + width="36.015163" + id="rect4546" + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.13268743" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.13268743" + id="rect4548" + width="36.015163" + height="36.015163" + x="70.763107" + y="65.193169" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="65.159958" + x="70.729897" + height="17.986917" + width="17.986917" + id="rect4550" + style="opacity:0.92000002;fill:#ffffff;stroke:#008000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#008000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + id="rect4552" + width="17.986917" + height="17.986917" + x="88.775391" + y="65.159958" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#008000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + id="rect4554" + width="17.986917" + height="17.986917" + x="70.729897" + y="83.205467" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="83.205467" + x="88.775391" + height="17.986917" + width="17.986917" + id="rect4556" + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.06626759" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.0664809" + id="rect4558" + width="18.044819" + height="18.044819" + x="88.733452" + y="83.163513" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="83.163513" + x="88.733452" + height="18.044819" + width="18.044819" + id="rect4560" + style="opacity:0.92000002;fill:#ffffff;stroke:#000000;stroke-width:0.0664809" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#ff0000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + id="rect4562" + width="9.0120564" + height="9.0120564" + x="88.716812" + y="83.146873" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="83.146873" + x="97.758217" + height="9.0120564" + width="9.0120564" + id="rect4564" + style="opacity:0.92000002;fill:#ffffff;stroke:#ff0000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + y="92.188286" + x="88.716812" + height="9.0120564" + width="9.0120564" + id="rect4566" + style="opacity:0.92000002;fill:#ffffff;stroke:#ff0000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <rect + style="opacity:0.92000002;fill:#ffffff;stroke:#ff0000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" + id="rect4568" + width="9.0120564" + height="9.0120564" + x="97.758217" + y="92.188286" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581" + sodipodi:sides="5" + sodipodi:cx="38.837053" + sodipodi:cy="34.212055" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 39.427167,34.552758 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4" + sodipodi:sides="5" + sodipodi:cx="48.443938" + sodipodi:cy="37.015208" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 49.034054,37.355912 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1" + sodipodi:sides="5" + sodipodi:cx="45.703611" + sodipodi:cy="42.401371" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 46.293725,42.742074 -0.451539,-0.02946 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8" + sodipodi:sides="5" + sodipodi:cx="51.656734" + sodipodi:cy="48.260002" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 52.24685,48.600705 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241577 0.0179,-0.452145 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5" + sodipodi:sides="5" + sodipodi:cx="61.38962" + sodipodi:cy="40.983961" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 61.979737,41.324662 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5-9" + sodipodi:sides="5" + sodipodi:cx="66.208818" + sodipodi:cy="52.512234" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 66.798932,52.852937 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5-9-7" + sodipodi:sides="5" + sodipodi:cx="47.4045" + sodipodi:cy="60.071757" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 47.994614,60.412461 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.01791,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5-9-7-5" + sodipodi:sides="5" + sodipodi:cx="67.815218" + sodipodi:cy="34.27488" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 68.405331,34.615583 -0.451538,-0.02946 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5-9-7-5-3" + sodipodi:sides="5" + sodipodi:cx="57.893341" + sodipodi:cy="61.394672" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 58.483456,61.735376 -0.451538,-0.02946 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-8-5-9-7-8" + sodipodi:sides="5" + sodipodi:cx="38.238581" + sodipodi:cy="57.614912" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 38.828698,57.955613 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241577 0.0179,-0.452145 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-1-83" + sodipodi:sides="5" + sodipodi:cx="38.711048" + sodipodi:cy="47.50405" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 39.301163,47.844754 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4581-4-18" + sodipodi:sides="5" + sodipodi:cx="56.47593" + sodipodi:cy="34.841846" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 57.066044,35.18255 -0.451538,-0.02946 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:transform-center-x="0.043779459" + inkscape:transform-center-y="0.022009718" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-18.189017" + inkscape:transform-center-x="2.0615066" + d="m 74.484456,33.22984 -0.451539,-0.02946 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="32.889137" + sodipodi:cx="73.894341" + sodipodi:sides="5" + id="path4748" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.525798,47.161783)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-27.73141" + inkscape:transform-center-x="-0.95390203" + d="m 84.091344,36.032994 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="35.692291" + sodipodi:cx="83.501228" + sodipodi:sides="5" + id="path4750" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-24.87237" + inkscape:transform-center-x="-6.2779993" + d="m 81.351018,41.419156 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="41.078453" + sodipodi:cx="80.760902" + sodipodi:sides="5" + id="path4752" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-30.694171" + inkscape:transform-center-x="-12.267146" + d="m 87.304143,47.277787 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="46.937084" + sodipodi:cx="86.714027" + sodipodi:sides="5" + id="path4754" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-40.585946" + inkscape:transform-center-x="-5.2086271" + d="m 97.03703,40.001744 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="39.661041" + sodipodi:cx="96.446915" + sodipodi:sides="5" + id="path4756" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-45.148428" + inkscape:transform-center-x="-16.84089" + d="m 101.85623,51.530019 -0.45154,-0.02946 -0.28025,0.355268 -0.11152,-0.438541 -0.42448,-0.156749 0.38262,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.43555,-0.122692 -0.16755,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="51.189316" + sodipodi:cx="101.26611" + sodipodi:sides="5" + id="path4758" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-26.181165" + inkscape:transform-center-x="-23.981747" + d="m 83.051907,59.089543 -0.451539,-0.02945 -0.280248,0.355268 -0.11152,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="58.74884" + sodipodi:cx="82.461792" + sodipodi:sides="5" + id="path4760" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-47.158677" + inkscape:transform-center-x="1.3563764" + d="m 103.46263,33.292665 -0.45154,-0.02946 -0.28025,0.355268 -0.11152,-0.438541 -0.42448,-0.156748 0.38262,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.43555,-0.122692 -0.16755,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="32.951962" + sodipodi:cx="102.87251" + sodipodi:sides="5" + id="path4762" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.01736252" + inkscape:transform-center-x="0.048334059" + d="m 73.885991,56.632695 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="56.291992" + sodipodi:cx="73.295876" + sodipodi:sides="5" + id="path4764" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(1.2701054,263.40433,-561.77875)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="-17.768422" + inkscape:transform-center-x="-11.224431" + d="m 74.358456,46.521836 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="46.181133" + sodipodi:cx="73.768341" + sodipodi:sides="5" + id="path4766" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + transform="rotate(-88.729895,89.192564,46.5287)" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 39.427167,68.948598 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="68.607894" + sodipodi:cx="38.837051" + sodipodi:sides="5" + id="path4770" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 49.034054,71.751752 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="71.411048" + sodipodi:cx="48.443939" + sodipodi:sides="5" + id="path4772" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 46.293725,77.137914 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="76.79721" + sodipodi:cx="45.703609" + sodipodi:sides="5" + id="path4774" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 54.892682,70.712308 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="70.371604" + sodipodi:cx="54.302568" + sodipodi:sides="5" + id="path4776" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 87.398633,99.249517 -0.451539,-0.02946 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122691 -0.167547,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="98.908817" + sodipodi:cx="86.808521" + sodipodi:sides="5" + id="path4778" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 61.507264,72.224218 -0.451539,-0.02946 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122691 -0.167547,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="71.883512" + sodipodi:cx="60.91715" + sodipodi:sides="5" + id="path4780" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 47.994614,94.808286 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156749 0.382615,-0.241578 0.01791,-0.452144 0.347989,0.289238 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="94.467582" + sodipodi:cx="47.404499" + sodipodi:sides="5" + id="path4782" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 68.405331,69.011426 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156749 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="68.670722" + sodipodi:cx="67.815216" + sodipodi:sides="5" + id="path4784" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 58.483456,96.1312 -0.451538,-0.02946 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156749 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="95.790496" + sodipodi:cx="57.893341" + sodipodi:sides="5" + id="path4786" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 38.828698,92.351438 -0.451539,-0.02946 -0.280249,0.355269 -0.111519,-0.438542 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289238 0.435547,-0.122692 -0.167547,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="92.010734" + sodipodi:cx="38.238583" + sodipodi:sides="5" + id="path4788" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 39.301163,82.24059 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156749 0.382616,-0.241577 0.0179,-0.452145 0.347989,0.289238 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="81.899887" + sodipodi:cx="38.711048" + sodipodi:sides="5" + id="path4790" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + inkscape:transform-center-y="0.022009718" + inkscape:transform-center-x="0.043779459" + d="m 55.83762,78.082853 -0.451538,-0.02946 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="1.1519173" + sodipodi:arg1="0.52359878" + sodipodi:r2="0.34070316" + sodipodi:r1="0.68140632" + sodipodi:cy="77.742153" + sodipodi:cx="55.247507" + sodipodi:sides="5" + id="path4792" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + sodipodi:type="star" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,106.77597,63.726613)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4794" + sodipodi:sides="5" + sodipodi:cx="73.894341" + sodipodi:cy="32.889137" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 74.484456,33.22984 -0.451539,-0.02946 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="2.0615066" + inkscape:transform-center-y="-18.189017" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,107.70779,57.265653)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4796" + sodipodi:sides="5" + sodipodi:cx="83.501228" + sodipodi:cy="35.692291" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 84.091344,36.032994 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-0.95390203" + inkscape:transform-center-y="-27.73141" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,108.57412,57.82944)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4798" + sodipodi:sides="5" + sodipodi:cx="80.760902" + sodipodi:cy="41.078453" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 81.351018,41.419156 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-6.2779993" + inkscape:transform-center-y="-24.87237" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,115.34735,60.288772)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4800" + sodipodi:sides="5" + sodipodi:cx="86.714027" + sodipodi:cy="46.937084" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 87.304143,47.277787 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-12.267146" + inkscape:transform-center-y="-30.694171" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,106.77597,63.726613)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4802" + sodipodi:sides="5" + sodipodi:cx="96.446915" + sodipodi:cy="39.661041" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 97.03703,40.001744 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-5.2086271" + inkscape:transform-center-y="-40.585946" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,106.77597,63.726613)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4804" + sodipodi:sides="5" + sodipodi:cx="101.26611" + sodipodi:cy="51.189316" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 101.85623,51.530019 -0.45154,-0.02946 -0.28025,0.355268 -0.11152,-0.438541 -0.42448,-0.156749 0.38262,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.43555,-0.122692 -0.16755,0.420337 z" + inkscape:transform-center-x="-16.84089" + inkscape:transform-center-y="-45.148428" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,106.59112,61.469002)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4806" + sodipodi:sides="5" + sodipodi:cx="82.461792" + sodipodi:cy="58.74884" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 83.051907,59.089543 -0.451539,-0.02945 -0.280248,0.355268 -0.11152,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122691 -0.167547,0.420336 z" + inkscape:transform-center-x="-23.981747" + inkscape:transform-center-y="-26.181165" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,106.77597,63.726613)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4808" + sodipodi:sides="5" + sodipodi:cx="102.87251" + sodipodi:cy="32.951962" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 103.46263,33.292665 -0.45154,-0.02946 -0.28025,0.355268 -0.11152,-0.438541 -0.42448,-0.156748 0.38262,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.43555,-0.122692 -0.16755,0.420336 z" + inkscape:transform-center-x="1.3563764" + inkscape:transform-center-y="-47.158677" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(1.2701054,-1150.3451,-418.21622)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#0000ff;stroke:#000000;stroke-width:0.26458332" + id="path4810" + sodipodi:sides="5" + sodipodi:cx="73.295876" + sodipodi:cy="56.291992" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 73.885991,56.632695 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156748 0.382616,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="0.048334059" + inkscape:transform-center-y="0.01736252" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,117.15434,56.822332)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4812" + sodipodi:sides="5" + sodipodi:cx="73.768341" + sodipodi:cy="46.181133" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 74.358456,46.521836 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-11.224431" + inkscape:transform-center-y="-17.768422" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#ff0000;stroke:#ff0000;stroke-width:0.26458332" + id="path4816" + cx="102.66778" + cy="86.703491" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#ff0000;stroke:#ff0000;stroke-width:0.26458332" + id="path4816-9" + cx="102.33705" + cy="99.620842" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,113.96615,59.971404)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4812-6" + sodipodi:sides="5" + sodipodi:cx="73.768341" + sodipodi:cy="46.181133" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 74.358456,46.521836 -0.451538,-0.02945 -0.280249,0.355268 -0.11152,-0.438541 -0.424481,-0.156748 0.382615,-0.241578 0.0179,-0.452144 0.347989,0.289237 0.435548,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-11.224431" + inkscape:transform-center-y="-17.768422" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#ff0000;stroke:#ff0000;stroke-width:0.26458332" + id="path4816-9-4" + cx="93.530205" + cy="86.523964" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,110.64064,55.136002)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4798-3" + sodipodi:sides="5" + sodipodi:cx="80.760902" + sodipodi:cy="41.078453" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 81.351018,41.419156 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-6.2779993" + inkscape:transform-center-y="-24.87237" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,112.28149,58.328791)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#ff0000;stroke:#000000;stroke-width:0.26458332" + id="path4798-3-3" + sodipodi:sides="5" + sodipodi:cx="80.760902" + sodipodi:cy="41.078453" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 81.351018,41.419156 -0.451539,-0.02945 -0.280249,0.355268 -0.111519,-0.438541 -0.424482,-0.156749 0.382616,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.435547,-0.122692 -0.167547,0.420337 z" + inkscape:transform-center-x="-6.2779993" + inkscape:transform-center-y="-24.87237" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#008000;stroke:#008000;stroke-width:0.26458332" + id="path4816-9-4-3" + cx="98.991966" + cy="92.042412" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#008000;stroke:#008000;stroke-width:0.26458332" + id="path4816-9-4-3-8" + cx="80.773514" + cy="97.560867" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#008000;stroke:#008000;stroke-width:0.26458332" + id="path4816-9-4-3-8-6" + cx="80.244347" + cy="71.631706" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#008000;stroke:#008000;stroke-width:0.26458332" + id="path4816-9-4-3-8-6-0" + cx="98.765167" + cy="69.515038" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <path + transform="rotate(-88.729895,112.6239,59.077982)" + sodipodi:type="star" + style="opacity:0.92000002;fill:#008000;stroke:#000000;stroke-width:0.26458332" + id="path4804-4" + sodipodi:sides="5" + sodipodi:cx="101.26611" + sodipodi:cy="51.189316" + sodipodi:r1="0.68140632" + sodipodi:r2="0.34070316" + sodipodi:arg1="0.52359878" + sodipodi:arg2="1.1519173" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 101.85623,51.530019 -0.45154,-0.02946 -0.28025,0.355268 -0.11152,-0.438541 -0.42448,-0.156749 0.38262,-0.241578 0.0179,-0.452144 0.34799,0.289238 0.43555,-0.122692 -0.16755,0.420337 z" + inkscape:transform-center-x="-16.84089" + inkscape:transform-center-y="-45.148428" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#0000ff;stroke:#0000ff;stroke-width:0.26458332" + id="path4816-9-4-3-8-8" + cx="89.731552" + cy="81.024406" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#0000ff;stroke:#0000ff;stroke-width:0.26458332" + id="path4816-9-4-3-8-8-8" + cx="85.233635" + cy="48.66964" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#0000ff;stroke:#0000ff;stroke-width:0.26458332" + id="path4816-9-4-3-8-8-8-8" + cx="54.334076" + cy="44.133926" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + <circle + style="opacity:0.92000002;fill:#0000ff;stroke:#0000ff;stroke-width:0.26458332" + id="path4816-9-4-3-8-8-8-8-9" + cx="51.121281" + cy="84.482887" + r="0.61421132" + inkscape:export-xdpi="400" + inkscape:export-ydpi="400" /> + </g> +</svg> diff --git a/pres/plakat/figs/docs b/pres/plakat/figs/docs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/pres/plakat/figs/docs diff --git a/pres/plakat/figs/galaxy.png b/pres/plakat/figs/galaxy.png new file mode 100644 index 0000000..27ea983 --- /dev/null +++ b/pres/plakat/figs/galaxy.png Binary files differdiff --git a/pres/plakat/figs/galaxy_flammkuchenblech.png b/pres/plakat/figs/galaxy_flammkuchenblech.png new file mode 100644 index 0000000..39da18c --- /dev/null +++ b/pres/plakat/figs/galaxy_flammkuchenblech.png Binary files differdiff --git a/pres/plakat/figs/galaxy_gan.png b/pres/plakat/figs/galaxy_gan.png new file mode 100644 index 0000000..8669469 --- /dev/null +++ b/pres/plakat/figs/galaxy_gan.png Binary files differdiff --git a/pres/plakat/figs/galaxy_gan.svg b/pres/plakat/figs/galaxy_gan.svg new file mode 100644 index 0000000..3d78cf8 --- /dev/null +++ b/pres/plakat/figs/galaxy_gan.svg @@ -0,0 +1,2 @@ +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="721px" height="249px" version="1.1" content="<mxfile userAgent="Mozilla/5.0 (X11; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0" version="8.3.2" editor="www.draw.io" type="device"><diagram>7VjPc6IwGP1rOO4OEEA9bl3XveyOMx62PabwFTIG4oRYoH/9JiTIL22dqq2HenCSly/5kvdeEsBC87RccrxN/rAIqOXaUWmhn5brzqaB/FdApQEfeRqIOYk05LTAmryAAW2D7kgEeS9QMEYF2fbBkGUZhKKHYc5Z0Q97YrSfdYtjGAHrENMx+o9EItHo1Ldb/DeQOGkyO7ZpecThJuZsl5l8loue6p9uTnEzlonPExyxogOhhYXmnDGhS2k5B6qobWjT/X4dad3Pm0MmTung6g7PmO7M0hdhIkBCS0xxScBMU1QNNfXiQHW3LXRXJETAeotD1VpIL0gsESmVNUcWMSVxJsuhnA5wCZh0wAWUR6fs7ImQ/gKWguCVDDEdXM9wVw3qRauU0/CbdFQKDIaNOeL90C1BsmA4OswXGvG1hAw4FozfPlMo+ECmvBFTEck3nKQkIyBXoPa3G1CZ8e5RchfEqvQXxEsBfHN7XHpDLu0P5NI/5jryfIjF+jimN8jhJ9oxGFE44kd68oe6O9SqKc5zEvYpkavk1b2hr648qMp3X1VLIu6bOFluW3QaiAYXTs52PISevALzGETvnDmB2w55/gHuGowDre3SvyoPEGoyrBiRiffSOZO+dj4aaKLXY3p1L5w3BkLTwUCahdFAtb77ZZ8k+eR6kk/O1hyNNfduTPPBdvVm75R8NhjHu5ri0+spjhBqgBXIWwzqU1FHneMD98sHl/fB7AI+MKK2x/vDyCG6qfGIautfsSfI743l97/k744jVcJVJ2yrAvLj0/XtQZ6p/eq0nNfjZUHP4L1ebF5pO2Zc5bCL2DcOIN04enq72Rev4DMfgR3nemf72Zf5gV3cyH4z29gPBuoNVTl1HwdoMJB7qXNcVtsvHzq8/bqEFv8B</diagram></mxfile>"><defs/><g transform="translate(0.5,0.5)"><rect x="200" y="0" width="120" height="60" fill="#ffffff" stroke="#000000" pointer-events="none"/><g transform="translate(221.5,23.5)"><switch><foreignObject style="overflow:visible;" pointer-events="all" width="76" height="12" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; vertical-align: top; width: 77px; white-space: nowrap; overflow-wrap: normal; text-align: center;"><div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">Echte Galaxie</div></div></foreignObject><text x="38" y="12" fill="#000000" text-anchor="middle" font-size="12px" font-family="Helvetica">Echte Galaxie</text></switch></g><rect x="200" y="120" width="120" height="60" fill="#ffffff" stroke="#000000" pointer-events="none"/><g transform="translate(232.5,143.5)"><switch><foreignObject style="overflow:visible;" pointer-events="all" width="55" height="12" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; vertical-align: top; width: 56px; white-space: nowrap; overflow-wrap: normal; text-align: center;"><div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">Generator</div></div></foreignObject><text x="28" y="12" fill="#000000" text-anchor="middle" font-size="12px" font-family="Helvetica">Generator</text></switch></g><rect x="400" y="60" width="120" height="60" fill="#ffffff" stroke="#000000" pointer-events="none"/><g transform="translate(411.5,76.5)"><switch><foreignObject style="overflow:visible;" pointer-events="all" width="97" height="27" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; vertical-align: top; width: 98px; white-space: nowrap; overflow-wrap: normal; text-align: center;"><div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">diskriminierendes<br />Netzwerk</div></div></foreignObject><text x="49" y="20" fill="#000000" text-anchor="middle" font-size="12px" font-family="Helvetica">diskriminierendes<br>Netzwerk</text></switch></g><rect x="0" y="120" width="120" height="60" fill="#ffffff" stroke="#000000" pointer-events="none"/><g transform="translate(26.5,136.5)"><switch><foreignObject style="overflow:visible;" pointer-events="all" width="66" height="27" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; vertical-align: top; width: 67px; white-space: nowrap; overflow-wrap: normal; text-align: center;"><div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">Generatives<br />Modell</div></div></foreignObject><text x="33" y="20" fill="#000000" text-anchor="middle" font-size="12px" font-family="Helvetica">Generatives<br>Modell</text></switch></g><path d="M 120.21 150.14 L 193.84 150.14" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 199.09 150.14 L 192.09 153.64 L 193.84 150.14 L 192.09 146.64 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 320.21 150.14 L 394.65 108.42" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 399.23 105.86 L 394.84 112.33 L 394.65 108.42 L 391.41 106.23 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 320.21 30.14 L 394.8 76.43" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 399.26 79.2 L 391.46 78.49 L 394.8 76.43 L 395.16 72.54 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 460.21 119.79 L 460 240 L 60 240 L 60.19 186.16" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 60.2 180.91 L 63.68 187.92 L 60.19 186.16 L 56.68 187.9 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><rect x="600" y="60" width="120" height="60" fill="#ffffff" stroke="#000000" pointer-events="none"/><g transform="translate(622.5,76.5)"><switch><foreignObject style="overflow:visible;" pointer-events="all" width="74" height="27" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; vertical-align: top; width: 75px; white-space: nowrap; overflow-wrap: normal; text-align: center;"><div xmlns="http://www.w3.org/1999/xhtml" style="display:inline-block;text-align:inherit;text-decoration:inherit;">Pseudo-reele<br />Galaxie</div></div></foreignObject><text x="37" y="20" fill="#000000" text-anchor="middle" font-size="12px" font-family="Helvetica">Pseudo-reele<br>Galaxie</text></switch></g><path d="M 520.21 90.14 L 593.84 90.14" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/><path d="M 599.09 90.14 L 592.09 93.64 L 593.84 90.14 L 592.09 86.64 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="none"/></g></svg> diff --git a/pres/plakat/figs/logos.png b/pres/plakat/figs/logos.png new file mode 100644 index 0000000..4334f48 --- /dev/null +++ b/pres/plakat/figs/logos.png Binary files differdiff --git a/pres/plakat/figs/logos_box.png b/pres/plakat/figs/logos_box.png new file mode 100644 index 0000000..c73e63f --- /dev/null +++ b/pres/plakat/figs/logos_box.png Binary files differdiff --git a/pres/plakat/figs/lookup_table_rho_r_function_grid.png b/pres/plakat/figs/lookup_table_rho_r_function_grid.png new file mode 100644 index 0000000..4fc3685 --- /dev/null +++ b/pres/plakat/figs/lookup_table_rho_r_function_grid.png Binary files differdiff --git a/pres/plakat/figs/poster.bib b/pres/plakat/figs/poster.bib new file mode 100644 index 0000000..6f4ba43 --- /dev/null +++ b/pres/plakat/figs/poster.bib @@ -0,0 +1,10 @@ +@phdthesis{schwarzmeier07, + author = "Jakub Schwarzmeier", + title = "On simulation if galaxy dynamics and their application to physics education", + school = "University of West Bohemia", + %address = "", + year = "2007", + %month = "", + %keywords = "", + %note = "", +} diff --git a/pres/plakat/poster.bib b/pres/plakat/poster.bib new file mode 100644 index 0000000..a06654b --- /dev/null +++ b/pres/plakat/poster.bib @@ -0,0 +1,21 @@ +@phdthesis{schwarzmeier07, + author = "Jakub Schwarzmeier", + title = "On simulation if galaxy dynamics and their application to physics education", + school = "University of West Bohemia", + %address = "", + year = "2007", + %month = "", + %keywords = "", + %note = "", +} + +@manual{stickley, + title = "Methods of Computational Astrophysics: Galaxy Simulation", + author = "Nathaniel R. Stickley", + organization = "University of California", + %address = "", + %edition = "", + %year = "", + %month = "", + %note = "", +} diff --git a/pres/plakat/poster_1.aux b/pres/plakat/poster_1.aux new file mode 100644 index 0000000..4979c8f --- /dev/null +++ b/pres/plakat/poster_1.aux @@ -0,0 +1,13 @@ +\relax +\catcode `"\active +\select@language{ngerman} +\@writefile{toc}{\select@language{ngerman}} +\@writefile{lof}{\select@language{ngerman}} +\@writefile{lot}{\select@language{ngerman}} +\newlabel{eq:NFW_profile}{{1}{1}} +\newlabel{fig:lookup_NFW}{{}{1}} +\newlabel{fig:bigo}{{}{2}} +\newlabel{fig:galaxy_cells}{{}{2}} +\newlabel{fig:galaxy_cells_3d}{{}{2}} +\newlabel{fig:galaxy_gan}{{}{2}} +\newlabel{fig:galaxy_flammkuchenblech}{{}{2}} diff --git a/pres/plakat/poster_1.fdb_latexmk b/pres/plakat/poster_1.fdb_latexmk new file mode 100644 index 0000000..3446593 --- /dev/null +++ b/pres/plakat/poster_1.fdb_latexmk @@ -0,0 +1,178 @@ +# Fdb version 3 +["pdflatex"] 1519667930 "poster_1.tex" "poster_1.pdf" "poster_1" 1519667943 + "/usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc" 1510784367 4850 80dc9bab7f31fb78a000ccfed0e27cab "" + "/usr/share/texmf-dist/fonts/map/fontname/texfonts.map" 1510784337 3287 e6b82fe08f5336d4d5ebc73fb1152e87 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/courier/pcrr7t.tfm" 1510784341 960 379cc0019370a9e0208a0a3f949f847a "" + "/usr/share/texmf-dist/fonts/tfm/adobe/courier/pcrr8r.tfm" 1510784341 1292 bd42be2f344128bff6d35d98474adfe3 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm" 1510784341 2240 eb56c13537f4d8a0bd3fafc25572b1bd "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb8r.tfm" 1510784341 4484 b828043cbd581d289d955903c1339981 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvbo7t.tfm" 1510784341 2492 944eaaf64cd820f73cb5bff1e7b2f0c2 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvbo8r.tfm" 1510784341 4736 423eba67d4e9420ec9df4a8def143b08 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm" 1510784341 2520 53e01eef820ca829e42c1333c3fd02b9 "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm" 1510784341 4712 9ef4d7d106579d4b136e1529e1a4533c "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvro7t.tfm" 1510784341 2772 ab6561c8ff5ee69ff6d5961b9356db5a "" + "/usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvro8r.tfm" 1510784341 4964 f223217e5e1f85fa3742fb0480aba9e8 "" + "/usr/share/texmf-dist/fonts/tfm/public/cm/cmex10.tfm" 1510784344 992 662f679a0b3d2d53c1b94050fdaa3f50 "" + "/usr/share/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1510784344 1524 4414a8315f39513458b80dfc63bff03a "" + "/usr/share/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1510784344 1288 655e228510b4c2a1abe905c368440826 "" + "/usr/share/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1510784344 1292 296a67155bdbfc32aa9c636f21e91433 "" + "/usr/share/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1510784344 1124 6c73e740cf17375f03eec0ee63599741 "" + "/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1510784334 30251 6afa5cb1d0204815a708a080681d4674 "" + "/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb" 1510784334 36741 fa121aac0049305630cf160b86157ee4 "" + "/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1510784334 32722 d7379af29a190c3f453aba36302ff5a9 "" + "/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1510784334 32362 179c33bbf43f19adbb3825bb4e36e57a "" + "/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1510784334 32569 5e5ddc8df908dea60932f3c484a54c0d "" + "/usr/share/texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb" 1510784331 45758 19968a0990191524e34e1994d4a31cb6 "" + "/usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb" 1510784331 35941 f27169cc74234d5bd5e4cca5abafaabb "" + "/usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvbo8a.pfb" 1510784331 39013 b244066151b1e3e718f9b8e88a5ff23b "" + "/usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb" 1510784331 44648 23115b2a545ebfe2c526c3ca99db8b95 "" + "/usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb" 1510784331 48169 b4fd9d908b9ee8c65d4305ad39071c5e "" + "/usr/share/texmf-dist/fonts/vf/adobe/courier/pcrr7t.vf" 1510784339 1344 6ff472164bf9de0fb2e864b28ac156d9 "" + "/usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvb7t.vf" 1510784339 1372 1c26b449eb4a1a0bcf6ac7cfe376d450 "" + "/usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvbo7t.vf" 1510784339 1372 fea22db4182f43265902745af9666ad6 "" + "/usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr7t.vf" 1510784339 1372 dc841a9f00a1a11b1443367ae6c5588e "" + "/usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvro7t.vf" 1510784339 1372 9948cedecdb0445a3b5cf1b8a8082ab8 "" + "/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1510784369 71627 94eb9990bed73c364d7f53f960cc8c5b "" + "/usr/share/texmf-dist/tex/generic/babel-english/english.ldf" 1510784355 7008 9ff5fdcc865b01beca2b0fe4a46231d4 "" + "/usr/share/texmf-dist/tex/generic/babel-german/ngerman.ldf" 1510784355 2194 f5fcacc41337b623a640c549d42a2a4d "" + "/usr/share/texmf-dist/tex/generic/babel-german/ngermanb.ldf" 1510784355 7200 6f6a9808555813df860e8ea6af93aeda "" + "/usr/share/texmf-dist/tex/generic/babel/babel.def" 1510784355 63496 cb064efcb545d89982b6449ede38ac23 "" + "/usr/share/texmf-dist/tex/generic/babel/babel.sty" 1510784355 14628 c2f717557b2fe79411f195256c567a0a "" + "/usr/share/texmf-dist/tex/generic/babel/switch.def" 1510784354 12075 3baa7789d8284d6689fa103b0c7821ba "" + "/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty" 1510784353 7612 729a8cc22a1ee0029997c7f74717ae05 "" + "/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty" 1510784353 7324 2310d1247db0114eb4726807c8837a0e "" + "/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty" 1510784353 1251 d170e11a3246c3392bc7f59595af42cb "" + "/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty" 1510784353 8253 473e0e41f9adadb1977e8631b8f72ea6 "" + "/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty" 1510784353 5152 b67a3a964ad9851e095110c854a1d461 "" + "/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty" 1510784353 14040 ac8866aac45982ac84021584b0abb252 "" + "/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty" 1510784353 18425 5b3c0c59d76fac78978b5558e83c1f36 "" + "/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty" 1510784353 20151 72b3c7cacb61f7dd527505c39a23f7c1 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1510784353 1006 b103be0bfc8c1682ff1fa9760697a329 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1510784353 43226 167a99346bfe2676e3efcdde2d81fe45 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1510784353 19302 4f089dc590e71f7331e6d5b5ea85273b "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1510784353 6068 edae1e768a7d8d8f0f00e953d2b0153e "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1510784353 7041 a891ad72049e17c4e366c40ca37b0ccb "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1510784353 4625 40c07e9f6f2f7c674704b3f2055560ce "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1510784353 2631 7eefa6cdbefd8d4e2bad7262cf1094cd "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1510784353 43477 81143b33d9ebafdeead07ede13372427 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1510784353 17436 8d99d4113be311daf23deff86991ee7d "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1510784353 20772 c57e34db4aa7b1da013169d04b743eac "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1510784353 9641 711f0edc22c180a5caf168b6e8970057 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1510784353 34516 658a71478d21df554bce9d9cd436203a "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1510784353 3052 e5672c657232fd63b0a9853b0746297c "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1510784353 16669 4ec6e40088fc6de6334b443fe2dc59f0 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1510784353 21541 4cd19f8ff7dd74d5aa7d803a6397af84 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1510784353 19998 d77fef95c7369827753d17fd11be19c4 "" + "/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1510784353 8943 2e2495b057f8f0035b5568394d489963 "" + "/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1510784353 11599 d694704a88e2f9007c996d3a6a4d629c "" + "/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1510784353 176652 1c2926908e2b356d454795c35385d580 "" + "/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1510784352 32969 dbcfd5a7de6a0f7255c333ef60287d59 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1510784352 454 9e9e7c99f4da4f41698be21eaef4938e "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1510784352 13416 940ea6971d7a65dc440d3479939c66ae "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1510784352 94097 62ac62cda46eb715560dc27f9ed6e8b1 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1510784352 9375 5adc70f722abd29fc250d59e0694b548 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1510784352 22069 7c21c42b15718ce922f36235be360490 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1510784352 8210 a7be5b52ef3d2c087b7dc3d52898b67e "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1510784352 3534 c7f28fbac13616513e513efe93b8569b "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1510784352 3167 7c9394e79aac27db96a92f9b2792b858 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1510784352 9289 261407875b9dbb0194691c3eb893610f "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1510784352 7078 946ddf4a7e57219b6afdbad98eb6731b "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1510784352 2688 139c6abc86761a6190c2f4bef5d752be "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1510784352 92284 dcf023dbaa84e6c50e11c2f79fe8cfa6 "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1510784352 35430 046e15fbb65e74d8f0e7945f99741fdb "" + "/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1510784352 7099 f44d505bae6c7c2b933cdd63441db4b9 "" + "/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1510784352 20934 2328bd2e04520e1ab077ac4ee13b8935 "" + "/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1510784352 16203 83cbe1220e389eeee283a6168f9a567b "" + "/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1510784352 42906 d54376d96df1a2ae2d33fb722236d8e9 "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1510784352 978 15af626ebd3d4d790aac19170dac04f2 "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1510784352 5437 d91f93ed61ecdc57e119849b2d784a0b "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1510784352 13507 809d848d9262638e1b1705a68a73c566 "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1510784352 35113 2ccc50c1c9573e4bac9230d030f9c67c "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1510784352 1983 b5994ebbcee17f1ba3d29bb1bd696fcf "" + "/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1510784352 7881 d459d6057e13d10ce7a227ae44b7295e "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1510784352 22211 d696ef78c12269178882d218b2cf191d "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1510784352 36194 e194ef4e0b396b531a3891feb4b1cc22 "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1510784352 33377 af391d6ad1bfcbe2278e191f48e43ba8 "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1510784352 2536 a3b0529d815a2759ba157b56610a6377 "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1510784352 6833 114eda2cf1d348e0e7e477a1a4dc1941 "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1510784352 16501 ab0135765e27b6b8dae047831fe84818 "" + "/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1510784352 5544 294baac9629ba59f675b1f2027ad7136 "" + "/usr/share/texmf-dist/tex/latex/a0poster/a0size.sty" 1510399353 8152 268ed2b80615aae94c473994b459df36 "" + "/usr/share/texmf-dist/tex/latex/base/article.cls" 1510784351 19821 310da678527a7dfe2a02c88af38079b7 "" + "/usr/share/texmf-dist/tex/latex/base/ifthen.sty" 1510784351 5159 a08c9bbd48fc492f15b22e458bef961f "" + "/usr/share/texmf-dist/tex/latex/base/inputenc.sty" 1510784351 4732 d63eda807ac82cca2ca8488efd31a966 "" + "/usr/share/texmf-dist/tex/latex/base/omsenc.dfu" 1510784350 2004 ac51aeac484f08c01026120d62677eca "" + "/usr/share/texmf-dist/tex/latex/base/ot1enc.dfu" 1510784350 3181 1cb3e9ad01f4a01127b2ffd821bfeec7 "" + "/usr/share/texmf-dist/tex/latex/base/size10.clo" 1510784350 8292 e897c12e1e886ce77fe26afc5d470886 "" + "/usr/share/texmf-dist/tex/latex/base/t1enc.dfu" 1510784350 11255 9d97362866549d3d3c994b5f28d1b9b5 "" + "/usr/share/texmf-dist/tex/latex/base/utf8.def" 1510784350 7784 325a2a09984cb5c4ff230f9867145ad3 "" + "/usr/share/texmf-dist/tex/latex/boxedminipage/boxedminipage.sty" 1510399352 2246 c5e2f9cee7fb5e15894c6d8564217d5c "" + "/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1510784351 1213 620bba36b25224fa9b7e1ccb4ecb76fd "" + "/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1510784351 1224 978390e9c2234eab29404bc21b268d1e "" + "/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def" 1510784351 16511 5d26b5e9dfb345f4c794a3d58bda444e "" + "/usr/share/texmf-dist/tex/latex/graphics/color.sty" 1510784351 7031 4ca2945c73eec4e726c0da188fbbf50f "" + "/usr/share/texmf-dist/tex/latex/graphics/graphics.sty" 1510784351 15275 7d676729b1bedd3e7f3c6717affb366c "" + "/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty" 1510784351 9066 649f2ccf62888e3d8c3e57256b70b8e1 "" + "/usr/share/texmf-dist/tex/latex/graphics/keyval.sty" 1510784351 2594 d18d5e19aa8239cf867fa670c556d2e9 "" + "/usr/share/texmf-dist/tex/latex/graphics/trig.sty" 1510784351 3980 0a268fbfda01e381fa95821ab13b6aee "" + "/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1510784351 678 4792914a8f45be57bb98413425e4c7af "" + "/usr/share/texmf-dist/tex/latex/lettrine/lettrine.cfg" 1510399346 1198 5eef98894a1cf2d02796fa3bdc12d0c8 "" + "/usr/share/texmf-dist/tex/latex/lettrine/lettrine.sty" 1510399346 8107 f453b3253a683b65504c13be688c04e4 "" + "/usr/share/texmf-dist/tex/latex/listings/listings.cfg" 1510784350 1827 d72ad54409ca5c1068a1939c63441bd2 "" + "/usr/share/texmf-dist/tex/latex/listings/listings.sty" 1510784350 80336 ff90c926c3d7bfdaa3d80ca57123b0bb "" + "/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty" 1510784350 77028 c3eb00afb55a32bc13ca8da7f5234377 "" + "/usr/share/texmf-dist/tex/latex/ms/everyshi.sty" 1510784350 3878 6aa7c08ff2621006e0603349e40a30a8 "" + "/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty" 1510784350 12095 5337833c991d80788a43d3ce26bd1c46 "" + "/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty" 1510784350 7075 2fe3d848bba95f139de11ded085e74aa "" + "/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty" 1510784350 22417 1d9df1eb66848aa31b18a593099cf45c "" + "/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1510784350 1197 8a80cdde14696a9198f1793a55dcf332 "" + "/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1510784350 410 5bf12ea7330e5f12c445332a4fe9a263 "" + "/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1510784350 21115 facf03b7dbe5ea2f5f1dce1ac84b5d05 "" + "/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1510784350 1091 d9163d29def82ee90370c8a63667742c "" + "/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1510784350 339 592cf35cba3d400082b8a9a5d0199d70 "" + "/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1510784350 306 0796eafca5e159e6ec2167a6d22d81b1 "" + "/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1510784350 443 0b2e781830192df35c0fd357cf13e26e "" + "/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1510784350 348 8927fde343487e003b01a4c2ca34073b "" + "/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1510784350 274 4cad6e665cc93ac2ac979039a94fa1e1 "" + "/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1510784350 325 2bcd023400636339210573e2b3ee298b "" + "/usr/share/texmf-dist/tex/latex/psnfss/omsphv.fd" 1510784349 576 929ce6fef69dfb1784acc37a3a60b968 "" + "/usr/share/texmf-dist/tex/latex/psnfss/ot1pcr.fd" 1510784349 985 1ed784d7bfe47179f3550d2303b073f8 "" + "/usr/share/texmf-dist/tex/latex/psnfss/ot1phv.fd" 1510784349 1684 0ac4554419e828cf2c810306539da167 "" + "/usr/share/texmf-dist/tex/latex/psnfss/times.sty" 1510784349 857 6c716f26c5eadfb81029fcd6ce2d45e6 "" + "/usr/share/texmf-dist/tex/latex/sectsty/sectsty.sty" 1510399341 22423 d476012cd03f82f9475ad54ba6cd3267 "" + "/usr/share/texmf-dist/tex/latex/shadow/shadow.sty" 1510399340 4274 0483d04191c1937afb7f81210c4767b0 "" + "/usr/share/texmf-dist/tex/latex/tools/array.sty" 1510784349 12396 d41f82b039f900e95f351e54ae740f31 "" + "/usr/share/texmf-dist/tex/latex/tools/multicol.sty" 1510784349 30180 4d723b83c66873ba53f72c4a8730d6d3 "" + "/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty" 1510784348 55589 34128738f682d033422ca125f82e5d62 "" + "/usr/share/texmf-dist/web2c/texmf.cnf" 1510784374 32585 d82bbcf7626b7842c87671687479e852 "" + "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1517504663 2404736 6ca9e6023b4459829efec74926ef1c58 "" + "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1517504637 7736837 37c869a4b6afb01be7fdde576c304f64 "" + "docs/abstract.tex" 1519667822 1296 b466a63b9f4fd5e6a2981baaa0c33ee5 "" + "docs/bigo.tex" 1519663806 486 67911974e6d48e840eecd76b853794f0 "" + "docs/danksagung.tex" 1519665365 503 b05895d2254d08e61c34b2511d8b88ab "" + "docs/ergebnisse.tex" 1519663893 254 d499bde01aa8f005460e26ad53ec9064 "" + "docs/gan.tex" 1519663869 252 317baa40efd90a5c9b0d10a6758ee625 "" + "docs/hauptziele.tex" 1519667820 618 661d7cf858b6f9cf39f48b1e6f992ec6 "" + "docs/lookup.tex" 1519667919 1004 fb52dee1e7cec87bdc4f510be2b5d95a "" + "docs/methoden.tex" 1519663166 253 89f612d4fea5cfb9ba9d4ebffd1790f1 "" + "docs/nutzen.tex" 1519667850 305 7fa1044ca41c7188e55761afb365fa6f "" + "docs/random_sampling_nfw.tex" 1519667890 1135 09ebd282890ee862b6c9c0577215e168 "" + "docs/rechner.tex" 1519656682 341 68f40663a7aada9feb914a640c79dd13 "" + "docs/wirkende_kraefte.tex" 1519665353 344 a2a64115d399bfd7ca8cd4126a06471f "" + "docs/zellen.tex" 1519663853 428 0b8a420c2c541acbc8eeec91883b1b81 "" + "docs/zukunft.tex" 1519581973 298 7c10d6da9495648ae4d1df01d6b5688a "" + "figs/1e6_6.png" 1519502020 88166 6ab97ed24cd34c41e8571120848805e5 "" + "figs/bigo_large.png" 1519576354 104439 bface0d199e259d4ff9a76c66c284b4a "" + "figs/cells.png" 1519570114 1297482 8f0be2d76bb79e5a8d4ffabe51211628 "" + "figs/cells_2D.png" 1519581477 62161 25e398c597829b5abd8a8868307849dc "" + "figs/galaxy.png" 1519498018 158503 2e9f6025259ce041725bc1968c473272 "" + "figs/galaxy_flammkuchenblech.png" 1519574229 2392909 86f29c661c2ee968deb0c37e64333d28 "" + "figs/galaxy_gan.png" 1519573662 82335 c7dc9a9baa85df918dd91425664ed6a1 "" + "figs/logos_box.png" 1519508976 1261906 5e80c6b31d0350fce08fd4b82698dba7 "" + "poster_1.aux" 1519667943 432 ea8f8c68cce9ff36aaaa6e15e646881a "" + "poster_1.tex" 1519663927 1787 fd8aac0b57f0ab969d301873d59e60cd "" + "sciposter.cls" 1519556712 30635 6c533e51f99527288f005e17c78f845e "" + (generated) + "poster_1.aux" + "poster_1.log" + "poster_1.pdf" diff --git a/pres/plakat/poster_1.fls b/pres/plakat/poster_1.fls new file mode 100644 index 0000000..1fbef5c --- /dev/null +++ b/pres/plakat/poster_1.fls @@ -0,0 +1,304 @@ +PWD /home/hanemile/Documents/github/JUFO18_GalaxyGeneration/pres/plakat +INPUT /usr/share/texmf-dist/web2c/texmf.cnf +INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt +INPUT poster_1.tex +OUTPUT poster_1.log +INPUT sciposter.cls +INPUT sciposter.cls +INPUT /usr/share/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texmf-dist/tex/latex/base/ifthen.sty +INPUT /usr/share/texmf-dist/tex/latex/base/ifthen.sty +INPUT /usr/share/texmf-dist/tex/latex/lettrine/lettrine.sty +INPUT /usr/share/texmf-dist/tex/latex/lettrine/lettrine.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texmf-dist/tex/latex/lettrine/lettrine.cfg +INPUT /usr/share/texmf-dist/tex/latex/lettrine/lettrine.cfg +INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texmf-dist/tex/latex/graphics/color.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/color.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/share/texmf-dist/tex/latex/shadow/shadow.sty +INPUT /usr/share/texmf-dist/tex/latex/shadow/shadow.sty +INPUT /usr/share/texmf-dist/tex/latex/a0poster/a0size.sty +INPUT /usr/share/texmf-dist/tex/latex/a0poster/a0size.sty +INPUT /usr/share/texmf-dist/tex/latex/psnfss/times.sty +INPUT /usr/share/texmf-dist/tex/latex/psnfss/times.sty +INPUT /usr/share/texmf-dist/tex/latex/boxedminipage/boxedminipage.sty +INPUT /usr/share/texmf-dist/tex/latex/boxedminipage/boxedminipage.sty +INPUT /usr/share/texmf-dist/fonts/map/fontname/texfonts.map +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/share/texmf-dist/tex/latex/tools/multicol.sty +INPUT /usr/share/texmf-dist/tex/latex/tools/multicol.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +INPUT /usr/share/texmf-dist/tex/latex/ms/everyshi.sty +INPUT /usr/share/texmf-dist/tex/latex/ms/everyshi.sty +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty +INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty +INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +INPUT /usr/share/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texmf-dist/tex/latex/tools/array.sty +INPUT /usr/share/texmf-dist/tex/latex/tools/array.sty +INPUT /usr/share/texmf-dist/tex/generic/babel/babel.sty +INPUT /usr/share/texmf-dist/tex/generic/babel/babel.sty +INPUT /usr/share/texmf-dist/tex/generic/babel/switch.def +INPUT /usr/share/texmf-dist/tex/generic/babel-english/english.ldf +INPUT /usr/share/texmf-dist/tex/generic/babel-english/english.ldf +INPUT /usr/share/texmf-dist/tex/generic/babel/babel.def +INPUT /usr/share/texmf-dist/tex/generic/babel/switch.def +INPUT /usr/share/texmf-dist/tex/generic/babel-german/ngerman.ldf +INPUT /usr/share/texmf-dist/tex/generic/babel-german/ngerman.ldf +INPUT /usr/share/texmf-dist/tex/generic/babel-german/ngermanb.ldf +INPUT /usr/share/texmf-dist/tex/latex/base/inputenc.sty +INPUT /usr/share/texmf-dist/tex/latex/base/inputenc.sty +INPUT /usr/share/texmf-dist/tex/latex/base/utf8.def +INPUT /usr/share/texmf-dist/tex/latex/base/utf8.def +INPUT /usr/share/texmf-dist/tex/latex/base/t1enc.dfu +INPUT /usr/share/texmf-dist/tex/latex/base/t1enc.dfu +INPUT /usr/share/texmf-dist/tex/latex/base/ot1enc.dfu +INPUT /usr/share/texmf-dist/tex/latex/base/ot1enc.dfu +INPUT /usr/share/texmf-dist/tex/latex/base/omsenc.dfu +INPUT /usr/share/texmf-dist/tex/latex/base/omsenc.dfu +INPUT /usr/share/texmf-dist/tex/latex/sectsty/sectsty.sty +INPUT /usr/share/texmf-dist/tex/latex/sectsty/sectsty.sty +INPUT poster_1.aux +INPUT poster_1.aux +OUTPUT poster_1.aux +INPUT /usr/share/texmf-dist/tex/latex/psnfss/ot1phv.fd +INPUT /usr/share/texmf-dist/tex/latex/psnfss/ot1phv.fd +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm +INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty +INPUT /usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty +INPUT /usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty +INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT figs/galaxy.png +INPUT ./figs/galaxy.png +OUTPUT poster_1.pdf +INPUT ./figs/galaxy.png +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm +INPUT /usr/share/texmf-dist/tex/latex/psnfss/ot1pcr.fd +INPUT /usr/share/texmf-dist/tex/latex/psnfss/ot1pcr.fd +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/courier/pcrr7t.tfm +INPUT figs/logos_box.png +INPUT ./figs/logos_box.png +INPUT ./figs/logos_box.png +INPUT docs/abstract.tex +INPUT docs/abstract.tex +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvbo7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvro7t.tfm +INPUT docs/hauptziele.tex +INPUT docs/hauptziele.tex +INPUT /usr/share/texmf-dist/tex/latex/psnfss/omsphv.fd +INPUT /usr/share/texmf-dist/tex/latex/psnfss/omsphv.fd +INPUT docs/nutzen.tex +INPUT docs/nutzen.tex +INPUT docs/methoden.tex +INPUT docs/methoden.tex +INPUT docs/random_sampling_nfw.tex +INPUT docs/random_sampling_nfw.tex +INPUT figs/1e6_6.png +INPUT ./figs/1e6_6.png +INPUT ./figs/1e6_6.png +INPUT docs/lookup.tex +INPUT docs/lookup.tex +INPUT docs/bigo.tex +INPUT docs/bigo.tex +INPUT figs/bigo_large.png +INPUT ./figs/bigo_large.png +INPUT ./figs/bigo_large.png +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr7t.tfm +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb7t.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvb7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb8r.tfm +INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvb7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/courier/pcrr7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/courier/pcrr8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvbo7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvbo8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvro7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvro8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvb7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvb8r.tfm +INPUT /usr/share/texmf-dist/fonts/vf/adobe/helvetic/phvr7t.vf +INPUT /usr/share/texmf-dist/fonts/tfm/adobe/helvetic/phvr8r.tfm +INPUT docs/wirkende_kraefte.tex +INPUT docs/wirkende_kraefte.tex +INPUT docs/zellen.tex +INPUT docs/zellen.tex +INPUT figs/cells_2D.png +INPUT ./figs/cells_2D.png +INPUT ./figs/cells_2D.png +INPUT figs/cells.png +INPUT ./figs/cells.png +INPUT ./figs/cells.png +INPUT docs/rechner.tex +INPUT docs/rechner.tex +INPUT docs/gan.tex +INPUT docs/gan.tex +INPUT figs/galaxy_gan.png +INPUT ./figs/galaxy_gan.png +INPUT ./figs/galaxy_gan.png +INPUT docs/ergebnisse.tex +INPUT docs/ergebnisse.tex +INPUT figs/galaxy_flammkuchenblech.png +INPUT ./figs/galaxy_flammkuchenblech.png +INPUT ./figs/galaxy_flammkuchenblech.png +INPUT docs/zukunft.tex +INPUT docs/zukunft.tex +INPUT docs/danksagung.tex +INPUT docs/danksagung.tex +INPUT poster_1.aux +INPUT /usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc +INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb +INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb +INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb +INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +INPUT /usr/share/texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb +INPUT /usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb +INPUT /usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvbo8a.pfb +INPUT /usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb +INPUT /usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb diff --git a/pres/plakat/poster_1.log b/pres/plakat/poster_1.log new file mode 100644 index 0000000..d15a045 --- /dev/null +++ b/pres/plakat/poster_1.log @@ -0,0 +1,908 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Arch Linux) (preloaded format=pdflatex 2018.2.1) 26 FEB 2018 18:58 +entering extended mode + restricted \write18 enabled. + file:line:error style messages enabled. + %&-line parsing enabled. +**poster_1.tex +(./poster_1.tex +LaTeX2e <2017-04-15> +Babel <3.15> and hyphenation patterns for 84 language(s) loaded. +(./sciposter.cls +Document Class: sciposter 2006/05/30 v1.17 scientific poster class (MHFW, AMW) +(/usr/share/texmf-dist/tex/latex/base/article.cls +Document Class: article 2014/09/29 v1.4h Standard LaTeX document class +(/usr/share/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) +) +\c@part=\count79 +\c@section=\count80 +\c@subsection=\count81 +\c@subsubsection=\count82 +\c@paragraph=\count83 +\c@subparagraph=\count84 +\c@figure=\count85 +\c@table=\count86 +\abovecaptionskip=\skip41 +\belowcaptionskip=\skip42 +\bibindent=\dimen102 +) (/usr/share/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) (/usr/share/texmf-dist/tex/latex/lettrine/lettrine.sty +File: lettrine.sty 2015/08/31 v1.9 (Daniel Flipo) + (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks14 +) +\c@DefaultLines=\count87 +\c@DefaultDepth=\count88 +\DefaultFindent=\dimen103 +\DefaultNindent=\dimen104 +\DefaultSlope=\dimen105 +\DiscardVskip=\dimen106 +\L@lbox=\box26 +\L@tbox=\box27 +\c@L@lines=\count89 +\c@L@depth=\count90 +\L@Pindent=\dimen107 +\L@Findent=\dimen108 +\L@Nindent=\dimen109 +\L@lraise=\dimen110 +\L@first=\dimen111 +\L@next=\dimen112 +\L@slope=\dimen113 +\L@height=\dimen114 +\L@novskip=\dimen115 +\LettrineWidth=\dimen116 +\LettrineHeight=\dimen117 +\LettrineDepth=\dimen118 + +Loading lettrine.cfg +(/usr/share/texmf-dist/tex/latex/lettrine/lettrine.cfg)) +\papermargin=\skip43 + (/usr/share/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) + (/usr/share/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 99. + (/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2017/06/24 v1.0g Graphics/color driver for pdftex +)) (/usr/share/texmf-dist/tex/latex/graphics/color.sty +Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC) + (/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package color Info: Driver file: pdftex.def on input line 147. +) (/usr/share/texmf-dist/tex/latex/shadow/shadow.sty +Package: shadow 2003/02/19 v1.3 shadow boxes (M.O.) +\txtwdth=\dimen119 +\sht=\dimen120 +\shw=\dimen121 +\shbox=\box28 +\sboxsep=\dimen122 +\sboxrule=\dimen123 +\sdim=\dimen124 +) (/usr/share/texmf-dist/tex/latex/a0poster/a0size.sty +File: a0size.sty 2004/01/31 v1.22b a0poster class (GK, MW) +LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 229. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 229. +LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' +(Font) OMX/cmex/m/n --> OMX/cmex/m/n on input line 229. +\big@size=\dimen125 +) (/usr/share/texmf-dist/tex/latex/psnfss/times.sty +Package: times 2005/04/12 PSNFSS-v9.2a (SPQR) +) (/usr/share/texmf-dist/tex/latex/boxedminipage/boxedminipage.sty) +\titlewidth=\skip44 +\logowidth=\skip45 +\parstartskip=\skip46 +\figtopskip=\skip47 +\figbotskip=\skip48 +\secskip=\skip49 +\titleskip=\skip50 +\secboxwidth=\skip51 +\c@subfig=\count91 +\c@algorithm=\count92 +\secrulewidth=\skip52 +) (/usr/share/texmf-dist/tex/latex/tools/multicol.sty +Package: multicol 2017/04/11 v1.8q multicolumn formatting (FMi) +\c@tracingmulticols=\count93 +\mult@box=\box29 +\multicol@leftmargin=\dimen126 +\c@unbalance=\count94 +\c@collectmore=\count95 +\doublecol@number=\count96 +\multicoltolerance=\count97 +\multicolpretolerance=\count98 +\full@width=\dimen127 +\page@free=\dimen128 +\premulticols=\dimen129 +\postmulticols=\dimen130 +\multicolsep=\skip53 +\multicolbaselineskip=\skip54 +\partial@page=\box30 +\last@line=\box31 +\maxbalancingoverflow=\dimen131 +\mult@rightbox=\box32 +\mult@grightbox=\box33 +\mult@gfirstbox=\box34 +\mult@firstbox=\box35 +\@tempa=\box36 +\@tempa=\box37 +\@tempa=\box38 +\@tempa=\box39 +\@tempa=\box40 +\@tempa=\box41 +\@tempa=\box42 +\@tempa=\box43 +\@tempa=\box44 +\@tempa=\box45 +\@tempa=\box46 +\@tempa=\box47 +\@tempa=\box48 +\@tempa=\box49 +\@tempa=\box50 +\@tempa=\box51 +\@tempa=\box52 +\c@columnbadness=\count99 +\c@finalcolumnbadness=\count100 +\last@try=\dimen132 +\multicolovershoot=\dimen133 +\multicolundershoot=\dimen134 +\mult@nat@firstbox=\box53 +\colbreak@box=\box54 +\mc@col@check@num=\count101 +) (/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +\pgfutil@everybye=\toks15 +\pgfutil@tempdima=\dimen135 +\pgfutil@tempdimb=\dimen136 + (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) +(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +\pgfutil@abb=\box55 + (/usr/share/texmf-dist/tex/latex/ms/everyshi.sty +Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) +)) (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +Package: pgfrcs 2015/08/07 v3.0.1a (rcs-revision 1.31) +)) +Package: pgf 2015/08/07 v3.0.1a (rcs-revision 1.15) + (/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) +\Gin@req@height=\dimen137 +\Gin@req@width=\dimen138 +) (/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +Package: pgfsys 2014/07/09 v3.0.1a (rcs-revision 1.48) + (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +\pgfkeys@pathtoks=\toks16 +\pgfkeys@temptoks=\toks17 + (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex +\pgfkeys@tmptoks=\toks18 +)) +\pgf@x=\dimen139 +\pgf@y=\dimen140 +\pgf@xa=\dimen141 +\pgf@ya=\dimen142 +\pgf@xb=\dimen143 +\pgf@yb=\dimen144 +\pgf@xc=\dimen145 +\pgf@yc=\dimen146 +\w@pgf@writea=\write3 +\r@pgf@reada=\read1 +\c@pgf@counta=\count102 +\c@pgf@countb=\count103 +\c@pgf@countc=\count104 +\c@pgf@countd=\count105 +\t@pgf@toka=\toks19 +\t@pgf@tokb=\toks20 +\t@pgf@tokc=\toks21 + (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +File: pgf.cfg 2008/05/14 (rcs-revision 1.7) +) +Driver file for pgf: pgfsys-pdftex.def + (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +File: pgfsys-pdftex.def 2014/10/11 (rcs-revision 1.35) + (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def +File: pgfsys-common-pdf.def 2013/10/10 (rcs-revision 1.13) +))) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex +File: pgfsyssoftpath.code.tex 2013/09/09 (rcs-revision 1.9) +\pgfsyssoftpath@smallbuffer@items=\count106 +\pgfsyssoftpath@bigbuffer@items=\count107 +) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex +File: pgfsysprotocol.code.tex 2006/10/16 (rcs-revision 1.4) +)) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) + +(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +LaTeX Info: Redefining \color on input line 709. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1364. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +Package: pgfcore 2010/04/11 v3.0.1a (rcs-revision 1.7) + (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +\pgfmath@dimen=\dimen147 +\pgfmath@count=\count108 +\pgfmath@box=\box56 +\pgfmath@toks=\toks22 +\pgfmath@stack@operand=\toks23 +\pgfmath@stack@operation=\toks24 +) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) +(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +\c@pgfmathroundto@lastzeros=\count109 +)) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex +File: pgfcorepoints.code.tex 2013/10/07 (rcs-revision 1.27) +\pgf@picminx=\dimen148 +\pgf@picmaxx=\dimen149 +\pgf@picminy=\dimen150 +\pgf@picmaxy=\dimen151 +\pgf@pathminx=\dimen152 +\pgf@pathmaxx=\dimen153 +\pgf@pathminy=\dimen154 +\pgf@pathmaxy=\dimen155 +\pgf@xx=\dimen156 +\pgf@xy=\dimen157 +\pgf@yx=\dimen158 +\pgf@yy=\dimen159 +\pgf@zx=\dimen160 +\pgf@zy=\dimen161 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex +File: pgfcorepathconstruct.code.tex 2013/10/07 (rcs-revision 1.29) +\pgf@path@lastx=\dimen162 +\pgf@path@lasty=\dimen163 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex +File: pgfcorepathusage.code.tex 2014/11/02 (rcs-revision 1.24) +\pgf@shorten@end@additional=\dimen164 +\pgf@shorten@start@additional=\dimen165 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex +File: pgfcorescopes.code.tex 2015/05/08 (rcs-revision 1.46) +\pgfpic=\box57 +\pgf@hbox=\box58 +\pgf@layerbox@main=\box59 +\pgf@picture@serial@count=\count110 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex +File: pgfcoregraphicstate.code.tex 2014/11/02 (rcs-revision 1.12) +\pgflinewidth=\dimen166 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex +File: pgfcoretransformations.code.tex 2015/08/07 (rcs-revision 1.20) +\pgf@pt@x=\dimen167 +\pgf@pt@y=\dimen168 +\pgf@pt@temp=\dimen169 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +File: pgfcorequick.code.tex 2008/10/09 (rcs-revision 1.3) +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex +File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2) +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex +File: pgfcorepathprocessing.code.tex 2013/09/09 (rcs-revision 1.9) +) +(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex +File: pgfcorearrows.code.tex 2015/05/14 (rcs-revision 1.43) +\pgfarrowsep=\dimen170 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2013/07/15 (rcs-revision 1.15) +\pgf@max=\dimen171 +\pgf@sys@shading@range@num=\count111 +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2013/07/15 (rcs-revision 1.18) + (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex +File: pgfcoreexternal.code.tex 2014/07/09 (rcs-revision 1.21) +\pgfexternal@startupbox=\box60 +)) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex +File: pgfcorelayers.code.tex 2013/07/18 (rcs-revision 1.7) +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex +File: pgfcoretransparency.code.tex 2013/09/30 (rcs-revision 1.5) +) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex +File: pgfcorepatterns.code.tex 2013/11/07 (rcs-revision 1.5) +))) (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2014/03/21 (rcs-revision 1.35) +\pgfnodeparttextbox=\box61 +) (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +File: pgfmoduleplot.code.tex 2015/08/03 (rcs-revision 1.13) +) (/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty +Package: pgfcomp-version-0-65 2007/07/03 v3.0.1a (rcs-revision 1.7) +\pgf@nodesepstart=\dimen172 +\pgf@nodesepend=\dimen173 +) (/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty +Package: pgfcomp-version-1-18 2007/07/23 v3.0.1a (rcs-revision 1.1) +)) (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +Package: pgffor 2013/12/13 v3.0.1a (rcs-revision 1.25) + (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) +\pgffor@iter=\dimen174 +\pgffor@skip=\dimen175 +\pgffor@stack=\toks25 +\pgffor@toks=\toks26 +)) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +Package: tikz 2015/08/07 v3.0.1a (rcs-revision 1.151) + (/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex +File: pgflibraryplothandlers.code.tex 2013/08/31 v3.0.1a (rcs-revision 1.20) +\pgf@plot@mark@count=\count112 +\pgfplotmarksize=\dimen176 +) +\tikz@lastx=\dimen177 +\tikz@lasty=\dimen178 +\tikz@lastxsaved=\dimen179 +\tikz@lastysaved=\dimen180 +\tikzleveldistance=\dimen181 +\tikzsiblingdistance=\dimen182 +\tikz@figbox=\box62 +\tikz@figbox@bg=\box63 +\tikz@tempbox=\box64 +\tikz@tempbox@bg=\box65 +\tikztreelevel=\count113 +\tikznumberofchildren=\count114 +\tikznumberofcurrentchild=\count115 +\tikz@fig@count=\count116 + (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +File: pgfmodulematrix.code.tex 2013/09/17 (rcs-revision 1.8) +\pgfmatrixcurrentrow=\count117 +\pgfmatrixcurrentcolumn=\count118 +\pgf@matrix@numberofcolumns=\count119 +) +\tikz@expandcount=\count120 + (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2008/06/17 v3.0.1a (rcs-revision 1.2) +))) (/usr/share/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count121 +\lst@gtempboxa=\box66 +\lst@token=\toks27 +\lst@length=\count122 +\lst@currlwidth=\dimen183 +\lst@column=\count123 +\lst@pos=\count124 +\lst@lostspace=\dimen184 +\lst@width=\dimen185 +\lst@newlines=\count125 +\lst@lineno=\count126 +\lst@maxwidth=\dimen186 + (/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2015/06/04 1.6 (Carsten Heinz) +\c@lstnumber=\count127 +\lst@skipnumbers=\count128 +\lst@framebox=\box67 +) (/usr/share/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2015/06/04 1.6 listings configuration +)) +Package: listings 2015/06/04 1.6 (Carsten Heinz) + (/usr/share/texmf-dist/tex/latex/tools/array.sty +Package: array 2016/10/06 v2.4d Tabular extension package (FMi) +\col@sep=\dimen187 +\extrarowheight=\dimen188 +\NC@list=\toks28 +\extratabsurround=\skip55 +\backup@length=\skip56 +) (/usr/share/texmf-dist/tex/generic/babel/babel.sty +Package: babel 2017/11/03 3.15 The Babel package + (/usr/share/texmf-dist/tex/generic/babel/switch.def +File: switch.def 2017/11/03 3.15 Babel switching mechanism +) +(/usr/share/texmf-dist/tex/generic/babel-english/english.ldf +Language: english 2017/06/06 v3.3r English support from the babel system + (/usr/share/texmf-dist/tex/generic/babel/babel.def +File: babel.def 2017/11/03 3.15 Babel common definitions + (/usr/share/texmf-dist/tex/generic/babel/switch.def +File: switch.def 2017/11/03 3.15 Babel switching mechanism +) +\babel@savecnt=\count129 +\U@D=\dimen189 +) +\l@canadian = a dialect from \language\l@american +\l@australian = a dialect from \language\l@british +\l@newzealand = a dialect from \language\l@british +) (/usr/share/texmf-dist/tex/generic/babel-german/ngerman.ldf +Language: ngerman 2016/11/02 v2.9 German support for babel (new orthography) + (/usr/share/texmf-dist/tex/generic/babel-german/ngermanb.ldf +Language: ngermanb 2016/11/02 v2.9 German support for babel (new orthography) +Package babel Info: Making " an active character on input line 125. +))) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty +Package: inputenc 2015/03/17 v1.2c Input encoding file +\inpenc@prehook=\toks29 +\inpenc@posthook=\toks30 + (/usr/share/texmf-dist/tex/latex/base/utf8.def +File: utf8.def 2017/01/28 v1.1t UTF-8 support for inputenc +Now handling font encoding OML ... +... no UTF-8 mapping file for font encoding OML +Now handling font encoding T1 ... +... processing UTF-8 mapping file for font encoding T1 + (/usr/share/texmf-dist/tex/latex/base/t1enc.dfu +File: t1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00AB (decimal 171) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00BB (decimal 187) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C0 (decimal 192) + defining Unicode char U+00C1 (decimal 193) + defining Unicode char U+00C2 (decimal 194) + defining Unicode char U+00C3 (decimal 195) + defining Unicode char U+00C4 (decimal 196) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00C7 (decimal 199) + defining Unicode char U+00C8 (decimal 200) + defining Unicode char U+00C9 (decimal 201) + defining Unicode char U+00CA (decimal 202) + defining Unicode char U+00CB (decimal 203) + defining Unicode char U+00CC (decimal 204) + defining Unicode char U+00CD (decimal 205) + defining Unicode char U+00CE (decimal 206) + defining Unicode char U+00CF (decimal 207) + defining Unicode char U+00D0 (decimal 208) + defining Unicode char U+00D1 (decimal 209) + defining Unicode char U+00D2 (decimal 210) + defining Unicode char U+00D3 (decimal 211) + defining Unicode char U+00D4 (decimal 212) + defining Unicode char U+00D5 (decimal 213) + defining Unicode char U+00D6 (decimal 214) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00D9 (decimal 217) + defining Unicode char U+00DA (decimal 218) + defining Unicode char U+00DB (decimal 219) + defining Unicode char U+00DC (decimal 220) + defining Unicode char U+00DD (decimal 221) + defining Unicode char U+00DE (decimal 222) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E0 (decimal 224) + defining Unicode char U+00E1 (decimal 225) + defining Unicode char U+00E2 (decimal 226) + defining Unicode char U+00E3 (decimal 227) + defining Unicode char U+00E4 (decimal 228) + defining Unicode char U+00E5 (decimal 229) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00E7 (decimal 231) + defining Unicode char U+00E8 (decimal 232) + defining Unicode char U+00E9 (decimal 233) + defining Unicode char U+00EA (decimal 234) + defining Unicode char U+00EB (decimal 235) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F0 (decimal 240) + defining Unicode char U+00F1 (decimal 241) + defining Unicode char U+00F2 (decimal 242) + defining Unicode char U+00F3 (decimal 243) + defining Unicode char U+00F4 (decimal 244) + defining Unicode char U+00F5 (decimal 245) + defining Unicode char U+00F6 (decimal 246) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+00F9 (decimal 249) + defining Unicode char U+00FA (decimal 250) + defining Unicode char U+00FB (decimal 251) + defining Unicode char U+00FC (decimal 252) + defining Unicode char U+00FD (decimal 253) + defining Unicode char U+00FE (decimal 254) + defining Unicode char U+00FF (decimal 255) + defining Unicode char U+0100 (decimal 256) + defining Unicode char U+0101 (decimal 257) + defining Unicode char U+0102 (decimal 258) + defining Unicode char U+0103 (decimal 259) + defining Unicode char U+0104 (decimal 260) + defining Unicode char U+0105 (decimal 261) + defining Unicode char U+0106 (decimal 262) + defining Unicode char U+0107 (decimal 263) + defining Unicode char U+0108 (decimal 264) + defining Unicode char U+0109 (decimal 265) + defining Unicode char U+010A (decimal 266) + defining Unicode char U+010B (decimal 267) + defining Unicode char U+010C (decimal 268) + defining Unicode char U+010D (decimal 269) + defining Unicode char U+010E (decimal 270) + defining Unicode char U+010F (decimal 271) + defining Unicode char U+0110 (decimal 272) + defining Unicode char U+0111 (decimal 273) + defining Unicode char U+0112 (decimal 274) + defining Unicode char U+0113 (decimal 275) + defining Unicode char U+0114 (decimal 276) + defining Unicode char U+0115 (decimal 277) + defining Unicode char U+0116 (decimal 278) + defining Unicode char U+0117 (decimal 279) + defining Unicode char U+0118 (decimal 280) + defining Unicode char U+0119 (decimal 281) + defining Unicode char U+011A (decimal 282) + defining Unicode char U+011B (decimal 283) + defining Unicode char U+011C (decimal 284) + defining Unicode char U+011D (decimal 285) + defining Unicode char U+011E (decimal 286) + defining Unicode char U+011F (decimal 287) + defining Unicode char U+0120 (decimal 288) + defining Unicode char U+0121 (decimal 289) + defining Unicode char U+0122 (decimal 290) + defining Unicode char U+0123 (decimal 291) + defining Unicode char U+0124 (decimal 292) + defining Unicode char U+0125 (decimal 293) + defining Unicode char U+0128 (decimal 296) + defining Unicode char U+0129 (decimal 297) + defining Unicode char U+012A (decimal 298) + defining Unicode char U+012B (decimal 299) + defining Unicode char U+012C (decimal 300) + defining Unicode char U+012D (decimal 301) + defining Unicode char U+012E (decimal 302) + defining Unicode char U+012F (decimal 303) + defining Unicode char U+0130 (decimal 304) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0132 (decimal 306) + defining Unicode char U+0133 (decimal 307) + defining Unicode char U+0134 (decimal 308) + defining Unicode char U+0135 (decimal 309) + defining Unicode char U+0136 (decimal 310) + defining Unicode char U+0137 (decimal 311) + defining Unicode char U+0139 (decimal 313) + defining Unicode char U+013A (decimal 314) + defining Unicode char U+013B (decimal 315) + defining Unicode char U+013C (decimal 316) + defining Unicode char U+013D (decimal 317) + defining Unicode char U+013E (decimal 318) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0143 (decimal 323) + defining Unicode char U+0144 (decimal 324) + defining Unicode char U+0145 (decimal 325) + defining Unicode char U+0146 (decimal 326) + defining Unicode char U+0147 (decimal 327) + defining Unicode char U+0148 (decimal 328) + defining Unicode char U+014A (decimal 330) + defining Unicode char U+014B (decimal 331) + defining Unicode char U+014C (decimal 332) + defining Unicode char U+014D (decimal 333) + defining Unicode char U+014E (decimal 334) + defining Unicode char U+014F (decimal 335) + defining Unicode char U+0150 (decimal 336) + defining Unicode char U+0151 (decimal 337) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0154 (decimal 340) + defining Unicode char U+0155 (decimal 341) + defining Unicode char U+0156 (decimal 342) + defining Unicode char U+0157 (decimal 343) + defining Unicode char U+0158 (decimal 344) + defining Unicode char U+0159 (decimal 345) + defining Unicode char U+015A (decimal 346) + defining Unicode char U+015B (decimal 347) + defining Unicode char U+015C (decimal 348) + defining Unicode char U+015D (decimal 349) + defining Unicode char U+015E (decimal 350) + defining Unicode char U+015F (decimal 351) + defining Unicode char U+0160 (decimal 352) + defining Unicode char U+0161 (decimal 353) + defining Unicode char U+0162 (decimal 354) + defining Unicode char U+0163 (decimal 355) + defining Unicode char U+0164 (decimal 356) + defining Unicode char U+0165 (decimal 357) + defining Unicode char U+0168 (decimal 360) + defining Unicode char U+0169 (decimal 361) + defining Unicode char U+016A (decimal 362) + defining Unicode char U+016B (decimal 363) + defining Unicode char U+016C (decimal 364) + defining Unicode char U+016D (decimal 365) + defining Unicode char U+016E (decimal 366) + defining Unicode char U+016F (decimal 367) + defining Unicode char U+0170 (decimal 368) + defining Unicode char U+0171 (decimal 369) + defining Unicode char U+0172 (decimal 370) + defining Unicode char U+0173 (decimal 371) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0178 (decimal 376) + defining Unicode char U+0179 (decimal 377) + defining Unicode char U+017A (decimal 378) + defining Unicode char U+017B (decimal 379) + defining Unicode char U+017C (decimal 380) + defining Unicode char U+017D (decimal 381) + defining Unicode char U+017E (decimal 382) + defining Unicode char U+01CD (decimal 461) + defining Unicode char U+01CE (decimal 462) + defining Unicode char U+01CF (decimal 463) + defining Unicode char U+01D0 (decimal 464) + defining Unicode char U+01D1 (decimal 465) + defining Unicode char U+01D2 (decimal 466) + defining Unicode char U+01D3 (decimal 467) + defining Unicode char U+01D4 (decimal 468) + defining Unicode char U+01E2 (decimal 482) + defining Unicode char U+01E3 (decimal 483) + defining Unicode char U+01E6 (decimal 486) + defining Unicode char U+01E7 (decimal 487) + defining Unicode char U+01E8 (decimal 488) + defining Unicode char U+01E9 (decimal 489) + defining Unicode char U+01EA (decimal 490) + defining Unicode char U+01EB (decimal 491) + defining Unicode char U+01F0 (decimal 496) + defining Unicode char U+01F4 (decimal 500) + defining Unicode char U+01F5 (decimal 501) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+0232 (decimal 562) + defining Unicode char U+0233 (decimal 563) + defining Unicode char U+1E02 (decimal 7682) + defining Unicode char U+1E03 (decimal 7683) + defining Unicode char U+200C (decimal 8204) + defining Unicode char U+2010 (decimal 8208) + defining Unicode char U+2011 (decimal 8209) + defining Unicode char U+2012 (decimal 8210) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+2015 (decimal 8213) + defining Unicode char U+2018 (decimal 8216) + defining Unicode char U+2019 (decimal 8217) + defining Unicode char U+201A (decimal 8218) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) + defining Unicode char U+201E (decimal 8222) + defining Unicode char U+2030 (decimal 8240) + defining Unicode char U+2031 (decimal 8241) + defining Unicode char U+2039 (decimal 8249) + defining Unicode char U+203A (decimal 8250) + defining Unicode char U+2423 (decimal 9251) + defining Unicode char U+1E20 (decimal 7712) + defining Unicode char U+1E21 (decimal 7713) +) +Now handling font encoding OT1 ... +... processing UTF-8 mapping file for font encoding OT1 + (/usr/share/texmf-dist/tex/latex/base/ot1enc.dfu +File: ot1enc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A0 (decimal 160) + defining Unicode char U+00A1 (decimal 161) + defining Unicode char U+00A3 (decimal 163) + defining Unicode char U+00AD (decimal 173) + defining Unicode char U+00B8 (decimal 184) + defining Unicode char U+00BF (decimal 191) + defining Unicode char U+00C5 (decimal 197) + defining Unicode char U+00C6 (decimal 198) + defining Unicode char U+00D8 (decimal 216) + defining Unicode char U+00DF (decimal 223) + defining Unicode char U+00E6 (decimal 230) + defining Unicode char U+00EC (decimal 236) + defining Unicode char U+00ED (decimal 237) + defining Unicode char U+00EE (decimal 238) + defining Unicode char U+00EF (decimal 239) + defining Unicode char U+00F8 (decimal 248) + defining Unicode char U+0131 (decimal 305) + defining Unicode char U+0141 (decimal 321) + defining Unicode char U+0142 (decimal 322) + defining Unicode char U+0152 (decimal 338) + defining Unicode char U+0153 (decimal 339) + defining Unicode char U+0174 (decimal 372) + defining Unicode char U+0175 (decimal 373) + defining Unicode char U+0176 (decimal 374) + defining Unicode char U+0177 (decimal 375) + defining Unicode char U+0218 (decimal 536) + defining Unicode char U+0219 (decimal 537) + defining Unicode char U+021A (decimal 538) + defining Unicode char U+021B (decimal 539) + defining Unicode char U+2013 (decimal 8211) + defining Unicode char U+2014 (decimal 8212) + defining Unicode char U+2018 (decimal 8216) + defining Unicode char U+2019 (decimal 8217) + defining Unicode char U+201C (decimal 8220) + defining Unicode char U+201D (decimal 8221) +) +Now handling font encoding OMS ... +... processing UTF-8 mapping file for font encoding OMS + (/usr/share/texmf-dist/tex/latex/base/omsenc.dfu +File: omsenc.dfu 2017/01/28 v1.1t UTF-8 support for inputenc + defining Unicode char U+00A7 (decimal 167) + defining Unicode char U+00B6 (decimal 182) + defining Unicode char U+00B7 (decimal 183) + defining Unicode char U+2020 (decimal 8224) + defining Unicode char U+2021 (decimal 8225) + defining Unicode char U+2022 (decimal 8226) +) +Now handling font encoding OMX ... +... no UTF-8 mapping file for font encoding OMX +Now handling font encoding U ... +... no UTF-8 mapping file for font encoding U + defining Unicode char U+00A9 (decimal 169) + defining Unicode char U+00AA (decimal 170) + defining Unicode char U+00AE (decimal 174) + defining Unicode char U+00BA (decimal 186) + defining Unicode char U+02C6 (decimal 710) + defining Unicode char U+02DC (decimal 732) + defining Unicode char U+200C (decimal 8204) + defining Unicode char U+2026 (decimal 8230) + defining Unicode char U+2122 (decimal 8482) + defining Unicode char U+2423 (decimal 9251) +)) (/usr/share/texmf-dist/tex/latex/sectsty/sectsty.sty +Package: sectsty 2002/02/25 v2.0.2 Commands to change all sectional heading styles +) (./poster_1.aux) +\openout1 = `poster_1.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 37. +LaTeX Font Info: ... okay on input line 37. +LaTeX Font Info: Try loading font information for OT1+phv on input line 37. + (/usr/share/texmf-dist/tex/latex/psnfss/ot1phv.fd +File: ot1phv.fd 2001/06/04 scalable font definitions for OT1/phv. +) (/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count130 +\scratchdimen=\dimen190 +\scratchbox=\box68 +\nofMPsegments=\count131 +\nofMParguments=\count132 +\everyMPshowfont=\toks31 +\MPscratchCnt=\count133 +\MPscratchDim=\dimen191 +\MPnumerator=\count134 +\makeMPintoPDFobject=\count135 +\everyMPtoPDFconversion=\toks32 +) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf + (/usr/share/texmf-dist/tex/generic/oberdiek/infwarerr.sty +Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) +) (/usr/share/texmf-dist/tex/latex/oberdiek/grfext.sty +Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty +Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) +))) (/usr/share/texmf-dist/tex/latex/oberdiek/kvoptions.sty +Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty +Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/etexcmds.sty +Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty +Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) +Package ifluatex Info: LuaTeX not detected. +) +Package etexcmds Info: Could not find \expanded. +(etexcmds) That can mean that you are not using pdfTeX 1.50 or +(etexcmds) that some package has redefined \expanded. +(etexcmds) In the latter case, load this package earlier. +))) (/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty +Package: pdftexcmds 2017/03/19 v0.25 Utility functions of pdfTeX for LuaTeX (HO) + (/usr/share/texmf-dist/tex/generic/oberdiek/ifpdf.sty +Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch +) +Package pdftexcmds Info: LuaTeX not detected. +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 438. +Package grfext Info: Graphics extension search list: +(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPEG,.JBIG2,.JB2,.eps] +(grfext) \AppendGraphicsExtensions on input line 456. + (/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live +)) +-- Paper type set to a2. + +Package xcolor Warning: Incompatible color definition on input line 37. + +\GPT@outputbox=\box69 +ABD: EveryShipout initializing macros +\c@lstlisting=\count136 +<figs/galaxy.png, id=4, 866.23625pt x 790.955pt> +File: figs/galaxy.png Graphic file (type png) +<use figs/galaxy.png> +Package pdftex.def Info: figs/galaxy.png used on input line 38. on input line 38. +Package pdftex.def Info: Requested size: 866.23415pt x 790.95308pt on input line 38. + +Overfull \hbox (32.41747pt too wide) in paragraph at lines 38--38 + [] + [] + +LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <43> not available +(Font) Font shape `OT1/phv/b/n' tried instead on input line 38. +LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <29.86> not available +(Font) Font shape `OT1/phv/b/n' tried instead on input line 38. +LaTeX Font Info: Try loading font information for OT1+pcr on input line 38. +(/usr/share/texmf-dist/tex/latex/psnfss/ot1pcr.fd +File: ot1pcr.fd 2001/06/04 font definitions for OT1/pcr. +) +<figs/logos_box.png, id=6, 455.301pt x 512.93633pt> +File: figs/logos_box.png Graphic file (type png) +<use figs/logos_box.png> +Package pdftex.def Info: figs/logos_box.png used on input line 38. on input line 38. +Package pdftex.def Info: Requested size: 455.29988pt x 512.93506pt on input line 38. + +Overfull \hbox (7.32669pt too wide) in paragraph at lines 38--39 +[]$[]$ $[]$$[]$ + [] + +(./docs/abstract.tex +LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <24.88> not available +(Font) Font shape `OT1/phv/b/n' tried instead on input line 1. +LaTeX Font Info: Font shape `OT1/phv/bx/it' in size <24.88> not available +(Font) Font shape `OT1/phv/b/it' tried instead on input line 1. +LaTeX Font Info: Font shape `OT1/phv/b/it' in size <24.88> not available +(Font) Font shape `OT1/phv/b/sl' tried instead on input line 1. +LaTeX Font Info: Font shape `OT1/phv/m/it' in size <17.28> not available +(Font) Font shape `OT1/phv/m/sl' tried instead on input line 1. +) (./docs/hauptziele.tex +Overfull \hbox (4.8125pt too wide) in paragraph at lines 32--1 +[][] + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 32--1 + + [] + +LaTeX Font Info: Try loading font information for OMS+phv on input line 8. +(/usr/share/texmf-dist/tex/latex/psnfss/omsphv.fd +File: omsphv.fd +) +LaTeX Font Info: Font shape `OMS/phv/m/n' in size <17.28> not available +(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 8. +) (./docs/nutzen.tex) (./docs/methoden.tex) (./docs/random_sampling_nfw.tex +<figs/1e6_6.png, id=7, 462.528pt x 346.896pt> +File: figs/1e6_6.png Graphic file (type png) +<use figs/1e6_6.png> +Package pdftex.def Info: figs/1e6_6.png used on input line 25. on input line 25. +Package pdftex.def Info: Requested size: 409.49358pt x 307.13791pt on input line 25. +) (./docs/lookup.tex) (./docs/bigo.tex +<figs/bigo_large.png, id=8, 462.528pt x 346.896pt> +File: figs/bigo_large.png Graphic file (type png) +<use figs/bigo_large.png> +Package pdftex.def Info: figs/bigo_large.png used on input line 13. on input line 13. +Package pdftex.def Info: Requested size: 409.49358pt x 307.13791pt on input line 13. +LaTeX Font Info: Font shape `OT1/phv/bx/n' in size <12> not available +(Font) Font shape `OT1/phv/b/n' tried instead on input line 16. + [1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./figs/galaxy.png> <./figs/logos_box.png> <./figs/1e6_6.png>]) (./docs/wirkende_kraefte.tex) (./docs/zellen.tex +<figs/cells_2D.png, id=27, 205.2468pt x 205.2468pt> +File: figs/cells_2D.png Graphic file (type png) +<use figs/cells_2D.png> +Package pdftex.def Info: figs/cells_2D.png used on input line 7. on input line 7. +Package pdftex.def Info: Requested size: 409.49358pt x 409.54674pt on input line 7. +<figs/cells.png, id=28, 3854.4pt x 2168.1pt> +File: figs/cells.png Graphic file (type png) +<use figs/cells.png> +Package pdftex.def Info: figs/cells.png used on input line 12. on input line 12. +Package pdftex.def Info: Requested size: 511.86502pt x 287.91699pt on input line 12. +) (./docs/rechner.tex) (./docs/gan.tex +<figs/galaxy_gan.png, id=29, 542.7477pt x 187.54065pt> +File: figs/galaxy_gan.png Graphic file (type png) +<use figs/galaxy_gan.png> +Package pdftex.def Info: figs/galaxy_gan.png used on input line 4. on input line 4. +Package pdftex.def Info: Requested size: 511.86502pt x 176.87772pt on input line 4. +) (./docs/ergebnisse.tex +<figs/galaxy_flammkuchenblech.png, id=30, 3854.4pt x 2168.1pt> +File: figs/galaxy_flammkuchenblech.png Graphic file (type png) +<use figs/galaxy_flammkuchenblech.png> +Package pdftex.def Info: figs/galaxy_flammkuchenblech.png used on input line 4. on input line 4. +Package pdftex.def Info: Requested size: 409.49358pt x 230.32036pt on input line 4. +) (./docs/zukunft.tex) (./docs/danksagung.tex) [2 <./figs/bigo_large.png> <./figs/cells_2D.png> <./figs/cells.png> <./figs/galaxy_gan.png> <./figs/galaxy_flammkuchenblech.png>] (./poster_1.aux) ) +Here is how much of TeX's memory you used: + 14560 strings out of 492985 + 274371 string characters out of 6138639 + 334424 words of memory out of 5000000 + 17765 multiletter control sequences out of 15000+600000 + 22002 words of font info for 43 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 55i,7n,54p,419b,1110s stack positions out of 5000i,500n,10000p,200000b,80000s +{/usr/share/texmf-dist/fonts/enc/dvips/base/8r.enc}</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvbo8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvr8a.pfb></usr/share/texmf-dist/fonts/type1/urw/helvetic/uhvro8a.pfb> +Output written on poster_1.pdf (2 pages, 3706402 bytes). +PDF statistics: + 72 PDF objects out of 1000 (max. 8388607) + 41 compressed objects within 1 object stream + 0 named destinations out of 1000 (max. 500000) + 53 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/pres/plakat/poster_1.pdf b/pres/plakat/poster_1.pdf new file mode 100644 index 0000000..3690f71 --- /dev/null +++ b/pres/plakat/poster_1.pdf Binary files differdiff --git a/pres/plakat/poster_1.synctex.gz b/pres/plakat/poster_1.synctex.gz new file mode 100644 index 0000000..6b4e39d --- /dev/null +++ b/pres/plakat/poster_1.synctex.gz Binary files differdiff --git a/pres/plakat/poster_1.tex b/pres/plakat/poster_1.tex new file mode 100644 index 0000000..9ced418 --- /dev/null +++ b/pres/plakat/poster_1.tex @@ -0,0 +1,58 @@ +% Create a sciposter with a size of 420 x 594 (DIN A 2) +% \documentclass[a2, plainboxedsections, draft]{sciposter} +% \documentclass[a2, plainboxedsections]{sciposter} +\documentclass[a2, plainboxedsections, final]{sciposter} + +% Import Packages +\usepackage{multicol} % Use multiple columns +\columnsep=2cm % Space between columns +\columnseprule=1pt % Width of the line inbetween the columns + +\usepackage{tikz} % Nice Graphs +\usepackage{listings} % Code +\usepackage{array} % Nice tables +\usepackage{times} % Times New Roman +\usepackage{graphicx} % Insert Images +\usepackage[english,ngerman]{babel} % German symbols (ä, ö, ü, ß) +\usepackage[utf8]{inputenc} % UTF-8 + +% title +\title{Galaxy Generation} % Title of the Project +\author{Emile Hansmaennel} % Name of the author +\institute{Theodor Fliedner Gymnasium} % Institute +\email{emile.hansmaennel@gmail.com} % Email +\leftlogo[1.25]{figs/galaxy} % Logo left of the title +\rightlogo[1]{figs/logos_box} % Logo right of the title + +% Custom section header style +\usepackage{sectsty} +\sectionfont{\color{black}\itshape\selectfont\sectionrule{0pt}{0pt}{-4pt}{1pt}} + +% footnote +\conference{\\ \textbf{Jugend Forscht 2018}, Emile Hansmaennel, Theodor-Fliedner-Gymnasium} + +% Rest +\setmargins[2cm] % Page Margin + +\begin{document} + \maketitle + + \begin{multicols}{2} + + \input{docs/abstract} + \input{docs/hauptziele} + \input{docs/nutzen} + \input{docs/methoden} + \input{docs/random_sampling_nfw} + \input{docs/lookup} + \input{docs/bigo} + \input{docs/wirkende_kraefte} + \input{docs/zellen} + \input{docs/rechner} + \input{docs/gan} + \input{docs/ergebnisse} + \input{docs/zukunft} + \input{docs/danksagung} + + \end{multicols} +\end{document} diff --git a/pres/plakat/sciposter.cls b/pres/plakat/sciposter.cls new file mode 100644 index 0000000..570de16 --- /dev/null +++ b/pres/plakat/sciposter.cls @@ -0,0 +1,985 @@ +%% +%% This is file `sciposter.cls' v 1.18 +%% +%% Authors Michael H.F. Wilkinson and Alle Meije Wink +%% August 18, 2006 +%% +%% Derived from IWIposter.cls, 18/11/2003, same authors +%% Problems, bugs and comments to +%% m.h.f.wilkinson@rug.nl +%% version 1.18, 2006/08/18 : +%% - footer layout options changed \LEFTSIDEfootlogo command +%% added +%% - \PARstart command problem fixed, by redefining it using +%% the lettrine package by Daniel Flipo +%% - bug in babel support fixed (\abstractname hook used now) +%% version 1.17, 2006/06/15 : +%% - interfacing to babel implemented by using \figurename +%% and \tablename in table caption. Thanks to Marcus +%% Guenther for pointing out the problem. +%% - \algorithmname added for easy changing of algorithm +%% caption start, for similar reasons as above +%% - posibilities for changing caption style added +%% - \setmargins added as command +%% - \noindent added to figure, algorithm, and table +%% environments to obtain correct layout if \parindent +%% is not zero (the default). Suggested by Pavel Rehulka +%% version 1.16, 2006/03/28 : +%% - plainboxsection option added, by popular request +%% version 1.15, 2005/10/20 : +%% - \caption given extra optional parameter indicating +%% which fraction of \columnwidth the width should be +%% (default 1). Thanks to Andreas Engel for this +%% suggestion. +%% version 1.14, 2005/09/02 : +%% - \centering (in stead of the center environment) can now +%% be used within figure environment without unwanted +%% centering of the caption +%% - Bug in colour setting of \section* fixed +%% - Font pointsize options now also work properly with +%% external paper size settings (including ISO RA0-RA3, +%% ISO B0-B3, and custom). +%% version 1.13, 2005/07/13 : +%% - mainCol now properly affects background \pagecolor, +%% even in the presence of a right logo +%% version 1.12, 2004/10/11 : +%% - mainCol now properly affects background \pagecolor +%% +%% version 1.11, 2004/06/22 : +%% - Some cosmetics of the \subfigure command improved, +%% references to subfigures are now displayed as 2(a) etc. +%% version 1.10, 2004/04/02 : +%% - Standard LaTeX seems to work now: xdvi look weird, +%% but with up-to-date dvips I get good results when viewed +%% with gv +%% - Custom paper support through external files added +%% ISO paper sizes RA0, RA1, RA2, B1, B2, and B3 added +%% using this feature +%% - ANSI paper sizes B (tabloid), C, D, and E added +%% - oddball paper size A0b removed (was this an attempt at +%% ANSI E?). +%% - Boxed section headers work better on small paper now. +%% version 1.00, 2004/02/16 : +%% - Essentially IWIposter.cls v1.16, but without explicit +%% reference to University of Groningen and Institute for +%% Mathematics and Computing Science +%% Formatting for logos is provided but no defaults +%% available +%% +\ProvidesClass{sciposter}[2006/05/30 v1.17 scientific poster class (MHFW, AMW)] +\NeedsTeXFormat{LaTeX2e}[1995/06/01] +\LoadClass{article} +\RequirePackage{ifthen} +\RequirePackage{lettrine} + +\newcommand{\papertype}{a0} +\newcommand{\requestpointsize}{25pt} +\newcommand{\fontpointsize}{25pt} +\newlength{\papermargin} + + +\newcommand{\setpspagesize}{% for default size A0 + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=83.96cm,118.82cm} + }{\special{papersize=118.82cm,83.96cm} + } + } + +\newcommand{\sectionsize}{\normalsize} +\newcommand{\subsectionsize}{\large} + +\newboolean{pointsizeset} + +\newboolean{largeletters} + +\newboolean{userightlogo} +\newboolean{useleftlogo} + +\newcommand{\orientation}{portrait} +\newcommand{\printstyle}{final} +\newcommand{\secstyle}{boxed} + +\DeclareOption{largefonts}{ +\setboolean{largeletters}{true} +} + +\DeclareOption{boxedsections}{ +\renewcommand{\secstyle}{boxed} +} +\DeclareOption{ruledsections}{ +\renewcommand{\secstyle}{ruled} +\renewcommand{\sectionsize}{\Large} +\renewcommand{\subsectionsize}{\large} +} +\DeclareOption{plainsections}{ +\renewcommand{\secstyle}{plain} +\renewcommand{\sectionsize}{\Large} +\renewcommand{\subsectionsize}{\large} +} +\DeclareOption{plainboxedsections}{ +\renewcommand{\secstyle}{plainboxed} +} + +% BUILT IN ISO paper size support +\DeclareOption{a0}{% ISO A0 paper + \renewcommand{\papertype}{a0} + \renewcommand{\fontpointsize}{25pt} + \setlength{\paperwidth}{83.96cm} + \setlength{\paperheight}{118.82cm} + \renewcommand{\setpspagesize}{% not really necessary + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=83.96cm,118.82cm} + }{\special{papersize=118.82cm,83.96cm} + } + } + } +\DeclareOption{a1}{% ISO A1 paper + \renewcommand{\papertype}{a1} + \renewcommand{\fontpointsize}{20pt} + \setlength{\paperwidth}{59.4cm} + \setlength{\paperheight}{83.96cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=59.4cm,83.96cm} + }{\special{papersize=83.96cm,59.4cm} + } + } + } +\DeclareOption{a2}{% ISO A2 paper + \renewcommand{\papertype}{a2} + \renewcommand{\fontpointsize}{17pt} + \setlength{\paperwidth}{41.98cm} + \setlength{\paperheight}{59.4cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=41.98cm,59.4cm} + }{\special{papersize=59.4cm,41.98cm} + } + } + } +\DeclareOption{a3}{% ISO A3 + \renewcommand{\papertype}{a3} + \renewcommand{\fontpointsize}{14pt} + \setlength{\paperwidth}{29.7cm} + \setlength{\paperheight}{41.98cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=29.7cm,41.98cm} + }{\special{papersize=41.98cm,29.7cm} + } + } + } + +\DeclareOption{a3p}{% ISO A3 + \renewcommand{\papertype}{a3p} + \renewcommand{\fontpointsize}{14pt} + \setlength{\paperwidth}{30.5cm} + \setlength{\paperheight}{45.7cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=30.5cm,45.7cm} + }{\special{papersize=30.5cm,45.7cm} + } + } + } +%%%%% New Options for US page sizes +\DeclareOption{ansiE}{% ANSI E, 34"x44" + \renewcommand{\papertype}{ansiE} + \renewcommand{\fontpointsize}{25pt} + \setlength{\paperwidth}{86.36cm} + \setlength{\paperheight}{111.76cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=86.36cm,111.76cm} + }{\special{papersize=111.76cm,86.36cm} + } + } +} +\DeclareOption{ansiD}{% ANSI D, 22"x34" + \renewcommand{\papertype}{ansiD} + \renewcommand{\fontpointsize}{20pt} + \setlength{\paperwidth}{55.88cm} + \setlength{\paperheight}{86.36cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=55.88cm,86.36cm} + }{\special{papersize=86.36cm,55.88cm} + } + } +} +\DeclareOption{ansiC}{% ANSI C, 17"x22" + \renewcommand{\papertype}{ansiC} + \renewcommand{\fontpointsize}{17pt} + \setlength{\paperwidth}{43.18cm} + \setlength{\paperheight}{55.88cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=43.18cm,55.88cm} + }{\special{papersize=55.88cm,43.18cm} + } + } +} +\DeclareOption{tabloid}{% Tabloid AKA ledger AKA ANSI B, 11"x17" + \renewcommand{\papertype}{tabloid} + \renewcommand{\fontpointsize}{14pt} + \setlength{\paperwidth}{27.94cm} + \setlength{\paperheight}{43.18cm} + \renewcommand{\setpspagesize}{ + \ifthenelse{\equal{\orientation}{portrait}}{ + \special{papersize=27.94cm,43.18cm} + }{\special{papersize=43.18cm,27.94cm} + } + } +} +\DeclareOption{landscape}{ +\renewcommand{\orientation}{landscape} +} +\DeclareOption{portrait}{ +\renewcommand{\orientation}{portrait} +} +\DeclareOption{draft}{ +\renewcommand{\printstyle}{draft} +} +\DeclareOption{final}{ +\renewcommand{\printstyle}{final} +} +\DeclareOption{36pt}{ +\renewcommand{\requestpointsize}{36pt} +\setboolean{pointsizeset}{true} +} +\DeclareOption{30pt}{ +\renewcommand{\requestpointsize}{30pt} +\setboolean{pointsizeset}{true} +} +\DeclareOption{25pt}{ +\renewcommand{\requestpointsize}{25pt} +\setboolean{pointsizeset}{true} +} +\DeclareOption{20pt}{ +\renewcommand{\requestpointsize}{20pt} +\setboolean{pointsizeset}{true} +} +\DeclareOption{17pt}{ +\renewcommand{\requestpointsize}{17pt} +\setboolean{pointsizeset}{true} +} +\DeclareOption{14pt}{ +\renewcommand{\requestpointsize}{14pt} +\setboolean{pointsizeset}{true} +} + + +\DeclareOption*{\InputIfFileExists{paper\CurrentOption.cfg}{}{\PackageWarning{poster}{Unknown option \CurrentOption}}} + +\ExecuteOptions{portrait,a0,final} +\ProcessOptions\relax + + +\ifthenelse{\equal{\orientation}{landscape}}{ + \newlength{\tempsize} + \setlength{\tempsize}{\paperwidth} + \setlength{\paperwidth}{\paperheight} + \setlength{\paperheight}{\tempsize} + }{} + + +\ifthenelse{\boolean{pointsizeset}}{ + \renewcommand{\fontpointsize}{\requestpointsize}}{ + \ifthenelse{\boolean{largeletters}}{ + \ifthenelse{\equal{\fontpointsize}{20pt}}{ + \renewcommand{\fontpointsize}{25pt} + }{ \ifthenelse{\equal{\fontpointsize}{17pt}}{ + \renewcommand{\fontpointsize}{20pt} + }{ \ifthenelse{\equal{\fontpointsize}{14pt}}{ + \renewcommand{\fontpointsize}{17pt} + }{\renewcommand{\fontpointsize}{30pt} + } + } + } + }{ + } + } + +\RequirePackage{graphics} +\RequirePackage{color} +\RequirePackage{shadow} +\RequirePackage{a0size} +\RequirePackage{times} +\RequirePackage{boxedminipage} + +\newlength{\titlewidth} +\newlength{\logowidth} + + +\newcommand{\setmargins}[1][]{ + \ifthenelse{\equal{#1}{}}{ + \ifthenelse{\equal{\orientation}{landscape}}{ + \setlength{\papermargin}{0.06\paperheight} + }{ + \setlength{\papermargin}{0.06\paperwidth} + } + }{\setlength{\papermargin}{#1}} + \setlength{\textwidth}{\paperwidth} + \addtolength{\textwidth}{-2\papermargin} + \setlength{\textheight}{\paperheight} + \addtolength{\textheight}{-2\papermargin} + + \setlength{\voffset}{-2.54cm} + \addtolength{\voffset}{\papermargin} + \setlength{\hoffset}{-2.54cm} + \addtolength{\hoffset}{\papermargin} + \setlength{\headheight}{0 cm} + \setlength{\headsep}{0 cm} + \setlength{\topmargin}{0 cm} + \setlength{\oddsidemargin}{0 cm} + \setlength{\footskip}{0.65\papermargin} + + \ifthenelse{\equal{\orientation}{landscape}}{ + \setlength{\logowidth}{0.12\textheight} + }{ + \setlength{\logowidth}{0.12\textwidth} + } + \setlength{\titlewidth}{\textwidth} + \addtolength{\titlewidth}{-2\logowidth} + +} + +\setmargins + +\ifthenelse{\equal{\fontpointsize}{20pt}}{ + \renewcommand{\tiny}{\fontsize{10}{12}\selectfont} + \renewcommand{\scriptsize}{\fontsize{12}{14}\selectfont} + \renewcommand{\footnotesize}{\fontsize{14.4}{18}\selectfont} + \renewcommand{\small}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\normalsize}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\large}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\Large}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\LARGE}{\fontsize{35.83}{45}\selectfont} + \renewcommand{\huge}{\fontsize{43}{54}\selectfont} + \renewcommand{\Huge}{\fontsize{51.6}{64}\selectfont} + \newcommand{\veryHuge}{\fontsize{61.92}{77}\selectfont} + \newcommand{\VeryHuge}{\fontsize{74.3}{93}\selectfont} + \newcommand{\VERYHuge}{\fontsize{89.16}{112}\selectfont} + \newcommand{\titlesize}{\veryHuge} + \newcommand{\authorsize}{\LARGE} + \newcommand{\instsize}{\Large} + + \setlength\smallskipamount{5pt plus 2pt minus 2pt} + \setlength\medskipamount{10pt plus 3pt minus 3pt} + \setlength\bigskipamount{20pt plus 7pt minus 7pt} + \setlength\abovecaptionskip{20pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{20pt plus 5pt minus 13 pt} + \setlength\abovedisplayshortskip{0pt plus 5pt} + \setlength\belowdisplayshortskip{10pt plus 6pt minus 5pt} +}{\ifthenelse{\equal{\fontpointsize}{17pt}}{ + \renewcommand{\tiny}{\fontsize{8.3}{10}\selectfont} + \renewcommand{\scriptsize}{\fontsize{10}{12}\selectfont} + \renewcommand{\footnotesize}{\fontsize{12}{14}\selectfont} + \renewcommand{\small}{\fontsize{14.4}{18}\selectfont} + \renewcommand{\normalsize}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\large}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\Large}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\LARGE}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\huge}{\fontsize{35.83}{45}\selectfont} + \renewcommand{\Huge}{\fontsize{43}{54}\selectfont} + \newcommand{\veryHuge}{\fontsize{51.6}{64}\selectfont} + \newcommand{\VeryHuge}{\fontsize{61.92}{77}\selectfont} + \newcommand{\VERYHuge}{\fontsize{74.3}{93}\selectfont} + \newcommand{\titlesize}{\Huge} + \newcommand{\authorsize}{\LARGE} + \newcommand{\instsize}{\Large} + + + \setlength\smallskipamount{4.5pt plus 2pt minus 2pt} + \setlength\medskipamount{9pt plus 3pt minus 3pt} + \setlength\bigskipamount{18pt plus 6pt minus 6pt} + \setlength\abovecaptionskip{17pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{17pt plus 4pt minus 11 pt} + \setlength\abovedisplayshortskip{0pt plus 4pt} + \setlength\belowdisplayshortskip{8pt plus 5pt minus 4pt} + + }{\ifthenelse{\equal{\fontpointsize}{14pt}}{ + \renewcommand{\tiny}{\fontsize{8.3}{10}\selectfont} + \renewcommand{\scriptsize}{\fontsize{8.3}{10}\selectfont} + \renewcommand{\footnotesize}{\fontsize{10}{12}\selectfont} + \renewcommand{\small}{\fontsize{12}{14}\selectfont} + \renewcommand{\normalsize}{\fontsize{14.4}{18}\selectfont} + \renewcommand{\large}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\Large}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\LARGE}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\huge}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\Huge}{\fontsize{35.83}{45}\selectfont} + \newcommand{\veryHuge}{\fontsize{43}{54}\selectfont} + \newcommand{\VeryHuge}{\fontsize{51.6}{64}\selectfont} + \newcommand{\VERYHuge}{\fontsize{61.92}{77}\selectfont} + \newcommand{\titlesize}{\huge} + \newcommand{\authorsize}{\LARGE} + \newcommand{\instsize}{\Large} + + \setlength\smallskipamount{3.5pt plus 1pt minus 1pt} + \setlength\medskipamount{7.5pt plus 2pt minus 2pt} + \setlength\bigskipamount{15pt plus 5pt minus 5pt} + + \setlength\abovecaptionskip{14pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{14pt plus 4pt minus 9 pt} + \setlength\abovedisplayshortskip{0pt plus 4pt} + \setlength\belowdisplayshortskip{7pt plus 5pt minus 4pt} + + }{\ifthenelse{\equal{\fontpointsize}{25pt}}{ + \renewcommand{\tiny}{\fontsize{12}{14}\selectfont} + \renewcommand{\scriptsize}{\fontsize{14.4}{18}\selectfont} + \renewcommand{\footnotesize}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\small}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\normalsize}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\large}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\Large}{\fontsize{35.83}{45}\selectfont} + \renewcommand{\LARGE}{\fontsize{43}{54}\selectfont} + \renewcommand{\huge}{\fontsize{51.6}{64}\selectfont} + \renewcommand{\Huge}{\fontsize{61.92}{77}\selectfont} + \newcommand{\veryHuge}{\fontsize{74.3}{93}\selectfont} + \newcommand{\VeryHuge}{\fontsize{89.16}{212}\selectfont} + \newcommand{\VERYHuge}{\fontsize{107}{134}\selectfont} + + \newcommand{\titlesize}{\VeryHuge} + \newcommand{\authorsize}{\LARGE} + \newcommand{\instsize}{\Large} + + \setlength\smallskipamount{6pt plus 2pt minus 2pt} + \setlength\medskipamount{12pt plus 4pt minus 4pt} + \setlength\bigskipamount{24pt plus 8pt minus 8pt} + \setlength\abovecaptionskip{25pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{25pt plus 6pt minus 15 pt} + \setlength\abovedisplayshortskip{0pt plus 6pt} + \setlength\belowdisplayshortskip{13pt plus 7pt minus 6pt} + + }{\ifthenelse{\equal{\fontpointsize}{30pt}}{ + \renewcommand{\tiny}{\fontsize{14.4}{18}\selectfont} + \renewcommand{\scriptsize}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\footnotesize}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\small}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\normalsize}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\large}{\fontsize{35.83}{45}\selectfont} + \renewcommand{\Large}{\fontsize{43}{54}\selectfont} + \renewcommand{\LARGE}{\fontsize{51.6}{64}\selectfont} + \renewcommand{\huge}{\fontsize{61.92}{77}\selectfont} + \renewcommand{\Huge}{\fontsize{74.3}{93}\selectfont} + \newcommand{\veryHuge}{\fontsize{89.16}{112}\selectfont} + \newcommand{\VeryHuge}{\fontsize{107}{134}\selectfont} + \newcommand{\VERYHuge}{\fontsize{107}{134}\selectfont} + + \newcommand{\titlesize}{\veryHuge} + \newcommand{\authorsize}{\Large} + \newcommand{\instsize}{\large} + + \setlength\smallskipamount{8pt plus 2pt minus 2pt} + \setlength\medskipamount{14pt plus 5pt minus 5pt} + \setlength\bigskipamount{29pt plus 9pt minus 9pt} + + \setlength\abovecaptionskip{25pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{25pt plus 6pt minus 15 pt} + \setlength\abovedisplayshortskip{0pt plus 6pt} + \setlength\belowdisplayshortskip{13pt plus 7pt minus 6pt} + + }{ + \renewcommand{\tiny}{\fontsize{17.28}{22}\selectfont} + \renewcommand{\scriptsize}{\fontsize{20.74}{25}\selectfont} + \renewcommand{\footnotesize}{\fontsize{24.88}{30}\selectfont} + \renewcommand{\small}{\fontsize{29.86}{37}\selectfont} + \renewcommand{\normalsize}{\fontsize{35.83}{45}\selectfont} + \renewcommand{\large}{\fontsize{43}{54}\selectfont} + \renewcommand{\Large}{\fontsize{51.6}{64}\selectfont} + \renewcommand{\LARGE}{\fontsize{61.92}{77}\selectfont} + \renewcommand{\huge}{\fontsize{74.3}{93}\selectfont} + \renewcommand{\Huge}{\fontsize{89.16}{112}\selectfont} + \newcommand{\veryHuge}{\fontsize{107}{134}\selectfont} + \newcommand{\VeryHuge}{\fontsize{107}{134}\selectfont} + \newcommand{\VERYHuge}{\fontsize{107}{134}\selectfont} + + + \newcommand{\titlesize}{\Huge} + \newcommand{\authorsize}{\Large} + \newcommand{\instsize}{\large} + + \setlength\smallskipamount{10pt plus 2pt minus 2pt} + \setlength\medskipamount{18pt plus 6pt minus 6pt} + \setlength\bigskipamount{36pt plus 11pt minus 11pt} + + \setlength\abovecaptionskip{25pt} + \setlength\belowcaptionskip{0pt} + \setlength\abovedisplayskip{25pt plus 6pt minus 15 pt} + \setlength\abovedisplayshortskip{0pt plus 6pt} + \setlength\belowdisplayshortskip{13pt plus 7pt minus 6pt} + + } + } + } + } +} + + +\setlength\belowdisplayskip\abovedisplayskip +\normalsize +\newlength{\parstartskip} +\setlength\parstartskip{2\baselineskip} +\setboolean{useleftlogo}{true} +\setboolean{userightlogo}{true} + +% Definition of Colors +% Background- and Text-color +\definecolor{mainCol}{rgb}{1,1,1} +\definecolor{BoxCol}{rgb}{0.9,0.9,0.9} +\definecolor{TextCol}{rgb}{0,0,0} +\definecolor{SectionCol}{rgb}{0,0,0} + + +\AtBeginDocument{ + \typeout{-- Paper type set to \papertype.} + + \@ifundefined{pdfoutput}{% standard LaTeX + \setpspagesize + }{} + \pagestyle{empty} + \setfooter + \pagecolor{mainCol} + } +% + + +\newlength{\figtopskip} +\newlength{\figbotskip} +\newlength{\secskip} +\newlength{\titleskip} +\ifthenelse{\equal{\orientation}{landscape}}{ + \setlength{\titleskip}{0.025\textheight} +}{ + \setlength{\titleskip}{0.025\textwidth} +} +\setlength{\secskip}{\bigskipamount} +\setlength{\figtopskip}{\secskip} +\setlength{\figbotskip}{\secskip} +%%%% Defines default institute +\newcommand{\theinstitute}{% +} + +\newcommand{\printemail}{} +% +\newcommand{\printleftlogo}{% + \begin{center} + \hspace*{0.6\textwidth} + \end{center} +} +\newcommand{\printrightlogo}{% + \begin{center} + \hspace*{0.6\textwidth} + \end{center} +} +% +% +% +\newboolean{footlogo@leftside} +% +\newcommand{\LEFTSIDEfootlogo}[1][true]{% + \setboolean{footlogo@leftside}{#1} + \setfooter +} +% +\newcommand{\footlogo}{} +\newcommand{\@conference}{} +% +\newcommand{\setfooter}{% + \ifthenelse{\boolean{footlogo@leftside}}{% + \renewcommand{\@oddfoot}{\footlogo \hfill \@conference\\} + }{% + \renewcommand{\@oddfoot}{\@conference \hfill \footlogo\\} + } +} +% +% +\newcommand{\conference}[1]{% arg:name of conference +\makeatletter +\renewcommand{\@conference}{\footnotesize #1} +\setfooter +} + +\renewcommand{\maketitle}{% + \ifthenelse{\boolean{useleftlogo}}{% + \begin{minipage}[c]{\logowidth} + \printleftlogo + \end{minipage} + }{} + \begin{minipage}[c]{\titlewidth} + \begin{center} + \renewcommand{\baselinestretch}{3.3}\normalsize + {\titlesize \bf \@title}\par + \renewcommand{\baselinestretch}{1.0}\normalsize + \vspace{0.4\titleskip} + {\authorsize {\bf\@author} \par} + {\instsize + \vspace{0.2\titleskip} + \theinstitute \par + \ifthenelse{\equal{\printemail}{}}{%nothing + }{% + \vspace{0.2\titleskip} + \texttt{\printemail} + } + } + \end{center} + \end{minipage}%}} + \ifthenelse{\boolean{userightlogo}}{% + \begin{minipage}[c]{\logowidth} + \printrightlogo + \end{minipage} + }{} +\vspace{\titleskip} +} +\newlength{\secboxwidth} +%%% \replacement for \section +% with colored section-title and automatic numbering +\newcommand{\Section}[2][?]{ + \vspace{\secskip} + \refstepcounter{section} + \begin{center} + \setlength{\secboxwidth}{\columnwidth} + \addtolength{\secboxwidth}{-1cm} + \shabox{\colorbox{BoxCol}{ + \begin{minipage}[c]{\secboxwidth} + \vspace{1.1ex} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{\arabic{section}.~#2}} + \end{center} + \vspace{0.2ex} + \end{minipage} + }} + \end{center} + \par\vspace{0.375\secskip} +} +% +\newcommand{\sSection}[1]{ + \vspace{\secskip} + \begin{center} + \setlength{\secboxwidth}{\columnwidth} + \addtolength{\secboxwidth}{-1cm} + \shabox{\colorbox{BoxCol}{ + \begin{minipage}[c]{\secboxwidth} + \vspace{1.1ex} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{#1}} + \end{center} + \vspace{0.2ex} + \end{minipage} + }} + \end{center} + \par\vspace{0.375\secskip} +} +% +% +%%% \PlainSection - replacement for \section +\newcommand{\PlainSection}[2][?]{ + \refstepcounter{section} + \vspace{\secskip} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{\arabic{section}.~#2}} + \end{center} + \par\vspace{0.375\secskip} +} +% +%%% \sPlainSection - replacement for \section +\newcommand{\sPlainSection}[1]{ + \vspace{\secskip} + \begin{center} + {\bf \sectionsize \textcolor{SectionCol}{#1}} + \end{center} + \par\vspace{0.375\secskip} +} +% +%%% \RuledSection - replacement for \section +\newcommand{\RuledSection}[2][?]{ + \vspace{0.3\secskip} + \rule{\columnwidth}{\secrulewidth} + \refstepcounter{section} + \vspace{0.7\secskip} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{\arabic{section}.~#2}} + \end{center} + \par\vspace{0.375\secskip} +} +% +%%% \sRuledSection - replacement for \section +\newcommand{\sRuledSection}[1]{ + \ifthenelse{\equal{\arabic{section}}{0}}{}{ + \vspace{0.3\secskip} + \rule{\columnwidth}{\secrulewidth} + } + \vspace{0.7\secskip} + \begin{center} + {\bf \sectionsize \textcolor{SectionCol}{#1}} + \end{center} + \par\vspace{0.375\secskip} +} +%%% \replacement for \section +% with colored section-title and automatic numbering +\newcommand{\PlainBoxSection}[2][?]{ + \vspace{\secskip} + \refstepcounter{section} + \begin{center} + \setlength{\secboxwidth}{\columnwidth} + \addtolength{\secboxwidth}{-1cm} + \setlength{\fboxrule}{2pt} + \setlength{\fboxsep}{0pt} + \fbox{\colorbox{BoxCol}{ + \begin{minipage}[c]{\secboxwidth} + \vspace{1.1ex} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{\arabic{section}.~#2}} + \end{center} + \vspace{0.2ex} + \end{minipage} + }} + \end{center} + \par\vspace{0.375\secskip} +} +% +\newcommand{\sPlainBoxSection}[1]{ + \vspace{\secskip} + \begin{center} + \setlength{\secboxwidth}{\columnwidth} + \addtolength{\secboxwidth}{-1cm} + \setlength{\fboxrule}{2pt} + \setlength{\fboxsep}{0pt} + \fbox{\colorbox{BoxCol}{ + \begin{minipage}[c]{\secboxwidth} + \vspace{1.1ex} + \begin{center} + {\bf\sectionsize\textcolor{SectionCol}{#1}} + \end{center} + \vspace{0.2ex} + \end{minipage} + }} + \end{center} + \par\vspace{0.375\secskip} +} +% +% +% +% +% +\ifthenelse{\equal{\secstyle}{ruled}}{ + \renewcommand{\section}{\secdef\RuledSection\sRuledSection} +}{ + \ifthenelse{\equal{\secstyle}{plain}}{ + \renewcommand{\section}{\secdef\PlainSection\sPlainSection} + }{ + \ifthenelse{\equal{\secstyle}{plainboxed}}{ + \renewcommand{\section}{\secdef\PlainBoxSection\sPlainBoxSection} + }{ + \renewcommand{\section}{\secdef\Section\sSection} + } + } +} +%%% \SubSection - replacement for \subsection +\newcommand{\SubSection}[2][?]{ + \vspace{0.5\secskip} + \refstepcounter{subsection} + {\bf \subsectionsize \textcolor{TextCol}{\arabic{section}.\arabic{subsection}~#2}} + \par\vspace{0.375\secskip} +} +%%% \sSubSection - replacement for \subsection +\newcommand{\sSubSection}[1]{ + \vspace{0.5\secskip} + {\bf \subsectionsize \textcolor{TextCol}{#1}} + \par\vspace{0.375\secskip} +} +% +\renewcommand{\subsection}{\secdef\SubSection\sSubSection} +%%% +\renewenvironment{abstract} +{\section*{\abstractname}\it} +{} +%%% +%%% +\newcounter{subfig}[figure] +\renewcommand{\thesubfig}{\thefigure(\alph{subfig})} +\newcommand{\capstart}{} +\newcommand{\capfirstskip}{} +\newcommand{\caplastskip}{} +\newcommand{\subfigure}[2][]{ +\refstepcounter{subfig} +\begin{tabular}{c} + #2 \\ + ( + \alph{subfig} + ) #1\\ +\end{tabular} +} + +%%% caption formatting commands +\newcommand{\mastercapstartstyle}[1]{\textbf{#1}} +\newcommand{\mastercapbodystyle}{\itshape} +\newcommand{\capbodystyle}{\mastercapbodystyle} + +\newcommand{\figcapstartstyle}[1]{\mastercapstartstyle{#1}} +\newcommand{\figcapbodystyle}{\mastercapbodystyle} +\newcommand{\tablecapstartstyle}[1]{\mastercapstartstyle{#1}} +\newcommand{\tablecapbodystyle}{\mastercapbodystyle} +\newcommand{\algcapstartstyle}[1]{\mastercapstartstyle{#1}} +\newcommand{\algcapbodystyle}{\mastercapbodystyle} + +%%% replacement for standard figure environment +\renewenvironment{figure}[1][h] +{\vspace{\figtopskip} + \refstepcounter{figure} + \renewcommand{\capstart}{% + \figcapstartstyle{\figurename\nobreakspace\thefigure:}% + } + \renewcommand{\capfirstskip}{\vspace{0.5\figtopskip}\par} + \renewcommand{\caplastskip}{} + \noindent% + \begin{minipage}{\columnwidth} + \renewcommand{\capbodystyle}{\figcapbodystyle} +} +{\end{minipage} +\vspace{\figbotskip}} + +\newcommand{\algorithmname}{Algorithm} +\newcounter{algorithm} +%%% replacement for algorithm environment +\newenvironment{algorithm}[1][h] +{\vspace{\figtopskip} + \refstepcounter{algorithm} + \renewcommand{\capstart}{% + \algcapstartstyle{\algorithmname\nobreakspace\thealgorithm:}% + } + \renewcommand{\capfirstskip}{\vspace{0.5\figtopskip}\par} + \renewcommand{\caplastskip}{} + \noindent% + \begin{boxedminipage}{\columnwidth} + \renewcommand{\capbodystyle}{\algcapbodystyle} +} +{\end{boxedminipage} +\vspace{\figbotskip}} +%%% replacement for standard table environment +\renewenvironment{table}[1][h] +{\vspace{\figtopskip} + \refstepcounter{table} + \renewcommand{\capstart}{% + \tablecapstartstyle{\tablename\nobreakspace\thetable:}% + } + \renewcommand{\caplastskip}{\vspace{0.5\figtopskip}\par} + \renewcommand{\capfirstskip}{} + \noindent% + \begin{minipage}{\columnwidth} + \renewcommand{\capbodystyle}{\tablecapbodystyle} + } + {\end{minipage}\vspace{\figbotskip}} +%%% replacement for standard \caption +\renewcommand{\caption}[2][1]{ + \capfirstskip + \begin{minipage}{#1\columnwidth} + \renewcommand{\baselinestretch}{1} + \setbox0=\hbox{\capstart\nobreakspace\capbodystyle #2} + \ifdim\wd0>\hsize + {\capstart\nobreakspace\capbodystyle #2} + \else + \centerline{\box0} + \fi + \par + \end{minipage} + \caplastskip +} +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +\setlength{\sboxrule}{2pt} +\setlength{\sboxsep}{0pt} +% +\ifthenelse{\equal{\orientation}{landscape}}{ + \setlength{\columnsep}{0.0385\textheight} + \setlength{\columnseprule}{0.0025\textheight} +}{ + \setlength{\columnsep}{0.0385\textwidth} + \setlength{\columnseprule}{0.0025\textwidth} +} +\setlength{\parindent}{0.0cm} +\newlength{\secrulewidth} +\setlength{\secrulewidth}{0.3\columnseprule} + +% +% +\renewcommand{\familydefault}{\sfdefault} + +\newcommand{\leftlogo}[2][0.9]{% +\ifthenelse{\equal{#2}{}}{% + \renewcommand{\printleftlogo}{% + \begin{center} + \hspace*{0.6\textwidth} + \end{center} + } + } + {\renewcommand{\printleftlogo}{% + \begin{center} + \resizebox{#1\textwidth}{!}{\includegraphics{#2}} + \end{center} + }} +} +% +\newcommand{\rightlogo}[2][0.9]{% +\ifthenelse{\equal{#2}{}}{% + \renewcommand{\printrightlogo}{% + \begin{center} + \hspace*{0.6\textwidth} + \end{center} + } + } + {\renewcommand{\printrightlogo}{% + \begin{center} + \resizebox{#1\textwidth}{!}{\includegraphics{#2}} + \end{center} + }} +} +% +\newcommand{\email}[1]{% +\renewcommand{\printemail}{#1} +} +% +\newcommand{\institute}[1]{% +\renewcommand{\theinstitute}{#1} +} +% +\newcommand{\norightlogo}{ +\setboolean{userightlogo}{false} +\setlength{\titlewidth}{\textwidth} +\ifthenelse{\boolean{useleftlogo}}{ +\addtolength{\titlewidth}{-\logowidth} +}{} +} +\newcommand{\noleftlogo}{ +\setboolean{useleftlogo}{false} +\setlength{\titlewidth}{\textwidth} +\ifthenelse{\boolean{userightlogo}}{ +\addtolength{\titlewidth}{-\logowidth} +}{} +} +\newcommand{\nologos}{ +\setboolean{useleftlogo}{false} +\setboolean{userightlogo}{false} +\setlength{\titlewidth}{\textwidth} +} + +% +%%% \PARstart command redefined using lettrine package of Danial Flipo +%% only included here for backwards compatibility + +\newcommand{\PARstart}[2]{\lettrine{#1}{#2}} + + +\endinput + +\color{TextCol} + +%% +%% End of file `sciposter.cls'. |