From e5dec2d8164c7c8d53e5db824b50a481edf71ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Fri, 8 Jan 2021 13:36:54 +0100 Subject: =?UTF-8?q?zwei=20Aufgaben=20hinzugef=C3=BCegt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cover/Makefile | 7 +++++-- cover/buchcover.tex | 14 ++++++++------ cover/matrix.pdf | Bin 0 -> 170861 bytes cover/matrix.tex | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 8 deletions(-) create mode 100644 cover/matrix.pdf create mode 100644 cover/matrix.tex (limited to 'cover') diff --git a/cover/Makefile b/cover/Makefile index 76ae56f..6f682dc 100644 --- a/cover/Makefile +++ b/cover/Makefile @@ -3,9 +3,12 @@ # # (c) 2018 Prof Dr Andreas Müller, Hochschule Rapperswil # -all: buchcover.png front.pdf back.pdf +all: matrix.pdf buchcover.png front.pdf back.pdf -buchcover.pdf: buchcover.tex +matrix.pdf: matrix.tex + pdflatex matrix.tex + +buchcover.pdf: buchcover.tex matrix.pdf pdflatex buchcover.tex buchcover.png: buchcover.pdf Makefile diff --git a/cover/buchcover.tex b/cover/buchcover.tex index 1fdf2dc..f7da81b 100644 --- a/cover/buchcover.tex +++ b/cover/buchcover.tex @@ -42,11 +42,12 @@ \hsize=13.6cm \begin{scope} -%\clip (0,0) rectangle({\bogenbreite},{\bogenhoehe}); -\clip (0,3) rectangle ({\bogenbreite},14.2); +\clip (0,0) rectangle({\bogenbreite},{\bogenhoehe}); +%\clip (0,0) rectangle ({\bogenbreite},20.2); %\node at (18.7,8.9) [scale=5.0]{\includegraphics{nozzle-hell.jpg}}; %\node at (18.7,8.9) [scale=5.0]{\includegraphics{nozzle-hell3.jpg}}; %\node at (18.7,8.9) [scale=5.0]{\includegraphics{nozzle.jpg}}; +\node at ({\bogenbreite/2},13.0) {\includegraphics[width=42cm]{matrix.pdf}}; \end{scope} \node at ({\einschlag+2*\gelenk+\ruecken+1.5*\breite},24.3) @@ -89,24 +90,25 @@ {\hbox to\hsize{\hfill% \sf \fontsize{13}{5}\selectfont Naoki Pross, % E - Pascal Andreas Schmid, % B - Thierry Schwaller%, % E + Michael Schmid, % MSE + Pascal Andreas Schmid%, % B }}; \node at ({\einschlag+2*\gelenk+\ruecken+1.5*\breite},16.45) [color=white,scale=1] {\hbox to\hsize{\hfill% \sf \fontsize{13}{5}\selectfont + Thierry Schwaller, % E Michael Steiner, % E Tim Tönz, % E - Fabio Viecelli, % B - Lukas Zogg%, % B + Fabio Viecelli%, % B }}; \node at ({\einschlag+2*\gelenk+\ruecken+1.5*\breite},15.8) [color=white,scale=1] {\hbox to\hsize{\hfill% \sf \fontsize{13}{5}\selectfont + Lukas Zogg%, % B % }}; diff --git a/cover/matrix.pdf b/cover/matrix.pdf new file mode 100644 index 0000000..385e283 Binary files /dev/null and b/cover/matrix.pdf differ diff --git a/cover/matrix.tex b/cover/matrix.tex new file mode 100644 index 0000000..338435b --- /dev/null +++ b/cover/matrix.tex @@ -0,0 +1,50 @@ +% +% matrix.tex -- Hintergrund für Bucheinband +% +% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule +% +\documentclass[tikz]{standalone} +\usepackage{amsmath} +\usepackage{times} +\usepackage{txfonts} +\usepackage{pgfplots} +\usepackage{csvsimple} +\usetikzlibrary{arrows,intersections,math} +\begin{document} +\def\skala{1} +\begin{tikzpicture}[>=latex,thick,scale=\skala] + +\def\w{30} +\def\h{10} +\def\l{7} +\def\s{0.155} +\def\vs{0.245} + +\fill[color=blue] (0,{-0.3*\h}) rectangle (\w,{2*\h}); + +\def\verticalline#1{ + \pgfmathparse{int(random(0,\h/\vs))*\vs} + \xdef\initialheight{\pgfmathresult} + \foreach \y in {0,\vs,...,\l}{ + \pgfmathparse{100*(1-(sqrt(\y/\l)))} + \xdef\farbe{\pgfmathresult} + \pgfmathparse{int(random(0,9))} + \xdef\zeichen{\pgfmathresult} + \node[color=white!\farbe!blue,opacity={(1-\y/\l)}] + %\node[color=white!\farbe!blue] + at (#1,{\initialheight+\y}) {\tt\zeichen}; + } +} + +\begin{scope} +\clip (0,{-0.3*\h}) rectangle (\w,{2*\h}); + +\foreach \x in {0,\s,...,\w}{ + \verticalline{\x} +} + +\end{scope} + +\end{tikzpicture} +\end{document} + -- cgit v1.2.1 From 3cc801ff90729bc7c168cf74df2763e52f3fdc43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 9 Jan 2021 17:07:25 +0100 Subject: add problem to chapter 3 --- cover/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cover') diff --git a/cover/Makefile b/cover/Makefile index 6f682dc..dcbe6c6 100644 --- a/cover/Makefile +++ b/cover/Makefile @@ -11,7 +11,7 @@ matrix.pdf: matrix.tex buchcover.pdf: buchcover.tex matrix.pdf pdflatex buchcover.tex -buchcover.png: buchcover.pdf Makefile +buchcover.png: buchcover.pdf convert -density 300 -extract 1966x2900+2630+190 buchcover.pdf \ buchcover.png -- cgit v1.2.1 From 7c20e14c7fe17b8a5489888d682e7b021c52a72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 25 Feb 2021 11:32:52 +0100 Subject: new slides --- cover/buchcover.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cover') diff --git a/cover/buchcover.tex b/cover/buchcover.tex index f7da81b..a939ba1 100644 --- a/cover/buchcover.tex +++ b/cover/buchcover.tex @@ -79,7 +79,7 @@ [color=white,scale=1] {\hbox to\hsize{\hfill% \sf \fontsize{13}{5}\selectfont - Pascal Honegger, % I + %Pascal Honegger, % I Alain Keller, % E Jan Marbach, % E Andreas Mozzini Vellen%, % E -- cgit v1.2.1 From 6c14ad8ce7a5552600863b64a0cb0b12e46e35f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Mon, 1 Mar 2021 11:20:06 +0100 Subject: Teilnehmer update --- cover/buchcover.tex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cover') diff --git a/cover/buchcover.tex b/cover/buchcover.tex index a939ba1..de0c7d8 100644 --- a/cover/buchcover.tex +++ b/cover/buchcover.tex @@ -81,6 +81,7 @@ \sf \fontsize{13}{5}\selectfont %Pascal Honegger, % I Alain Keller, % E + Robine Luchsinger, % B Jan Marbach, % E Andreas Mozzini Vellen%, % E }}; @@ -90,7 +91,7 @@ {\hbox to\hsize{\hfill% \sf \fontsize{13}{5}\selectfont Naoki Pross, % E - Michael Schmid, % MSE + Michael Schmid, % MSE Pascal Andreas Schmid%, % B }}; -- cgit v1.2.1