aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/punktgruppen/tikz/symmetric-shapes.tex
diff options
context:
space:
mode:
authormichael-OST <75078383+michael-OST@users.noreply.github.com>2021-07-14 17:02:04 +0200
committermichael-OST <75078383+michael-OST@users.noreply.github.com>2021-07-14 17:02:04 +0200
commit6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e (patch)
tree78d122b6874d4e77fd499a1793e0a9951b5e6081 /buch/papers/punktgruppen/tikz/symmetric-shapes.tex
parentvarious chapters updated, zusammenfassung filld with content (diff)
parentName angepasst (diff)
downloadSeminarMatrizen-6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e.tar.gz
SeminarMatrizen-6a001bdeac9a2a6794c42dbf8e8b87a90bd7c19e.zip
Merge branch 'master' of https://github.com/michael-OST/SeminarMatrizen
Diffstat (limited to 'buch/papers/punktgruppen/tikz/symmetric-shapes.tex')
-rw-r--r--buch/papers/punktgruppen/tikz/symmetric-shapes.tex59
1 files changed, 59 insertions, 0 deletions
diff --git a/buch/papers/punktgruppen/tikz/symmetric-shapes.tex b/buch/papers/punktgruppen/tikz/symmetric-shapes.tex
new file mode 100644
index 0000000..b2c051f
--- /dev/null
+++ b/buch/papers/punktgruppen/tikz/symmetric-shapes.tex
@@ -0,0 +1,59 @@
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{times}
+\usepackage{txfonts}
+
+\usetikzlibrary{arrows}
+\usetikzlibrary{shapes.geometric}
+\usetikzlibrary{intersections}
+\usetikzlibrary{math}
+\usetikzlibrary{positioning}
+\usetikzlibrary{arrows.meta}
+\usetikzlibrary{shapes.misc}
+\usetikzlibrary{calc}
+
+\begin{document}
+ \begin{tikzpicture}[
+ node distance = 2cm,
+ shapetheme/.style = {
+ very thick, draw = black, fill = magenta!20!white,
+ minimum size = 2cm,
+ },
+ line/.style = {thick, draw = darkgray},
+ axis/.style = {line, dashed},
+ dot/.style = {
+ circle, draw = darkgray, fill = darkgray,
+ minimum size = 1mm, inner sep = 0, outer sep = 0,
+ },
+ ]
+
+ \node[
+ shapetheme, rectangle
+ ] (R) {};
+ \node[dot] at (R) {};
+ \draw[axis] (R) ++(-1.5, 0) to ++(3, 0) node[right] {\(\sigma\)};
+
+ \node[
+ shapetheme,
+ regular polygon,
+ regular polygon sides = 5,
+ right = of R,
+ ] (Ps) {};
+ \node[dot] (P) at (Ps) {};
+ \draw[line, dotted] (P) to ++(18:1.5);
+ \draw[line, dotted] (P) to ++(90:1.5);
+ \draw[line, ->] (P) ++(18:1.2)
+ arc (18:90:1.2) node[midway, above right] {\(r, 72^\circ\)};
+
+ \node[
+ shapetheme,
+ circle, right = of P
+ ] (Cs) {};
+ \node[dot] (C) at (Cs) {};
+ \draw[line, dotted] (C) to ++(1.5,0);
+ \draw[line, dotted] (C) to ++(60:1.5);
+ \draw[line, ->] (C) ++(1.2,0)
+ arc (0:60:1.2) node[midway, above right] {\(r, \alpha\)};
+
+ \end{tikzpicture}
+\end{document}