aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/90-crypto/images/shift.tex
diff options
context:
space:
mode:
authorAndreas Müller <andreas.mueller@othello.ch>2021-04-06 16:40:17 +0200
committerAndreas Müller <andreas.mueller@othello.ch>2021-04-06 16:40:17 +0200
commitc4446c32a0fd6e829959ca2bf84bbad211554a87 (patch)
treee19b644cafa85d894d581aca707a2fe02c581dea /buch/chapters/90-crypto/images/shift.tex
parentnew drawings (diff)
downloadSeminarMatrizen-c4446c32a0fd6e829959ca2bf84bbad211554a87.tar.gz
SeminarMatrizen-c4446c32a0fd6e829959ca2bf84bbad211554a87.zip
add new stuff
Diffstat (limited to '')
-rw-r--r--buch/chapters/90-crypto/images/shift.tex30
1 files changed, 30 insertions, 0 deletions
diff --git a/buch/chapters/90-crypto/images/shift.tex b/buch/chapters/90-crypto/images/shift.tex
new file mode 100644
index 0000000..5cfdd92
--- /dev/null
+++ b/buch/chapters/90-crypto/images/shift.tex
@@ -0,0 +1,30 @@
+%
+% shift.tex -- template for standalon tikz images
+%
+% (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\s{1}
+\def\punkt#1#2{({#1*\s},{#2*\s})}
+
+\draw \punkt{0}{0} rectangle \punkt{8}{4};
+\foreach \x in {1,...,7}{
+ \draw \punkt{\x}{0} -- \punkt{\x}{4};
+}
+\foreach \y in {1,...,3}{
+ \draw \punkt{0}{\y} -- \punkt{8}{\y};
+}
+
+\end{tikzpicture}
+\end{document}
+