aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/punktgruppen/tikz/combine-symmetries.tex
diff options
context:
space:
mode:
authorLukaszogg <82384106+Lukaszogg@users.noreply.github.com>2021-07-17 16:03:21 +0200
committerLukaszogg <82384106+Lukaszogg@users.noreply.github.com>2021-07-17 16:03:21 +0200
commitf4e4cd2fd6afeab395a63db5401e68a1b379eee8 (patch)
treecb7be6b76ce1ec7ec3821b3bd61b85d65f0a2fa5 /buch/papers/punktgruppen/tikz/combine-symmetries.tex
parentTeil1+Teil0 (diff)
parentMerge pull request #37 from JODBaer/Baer (diff)
downloadSeminarMatrizen-f4e4cd2fd6afeab395a63db5401e68a1b379eee8.tar.gz
SeminarMatrizen-f4e4cd2fd6afeab395a63db5401e68a1b379eee8.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'buch/papers/punktgruppen/tikz/combine-symmetries.tex')
-rw-r--r--buch/papers/punktgruppen/tikz/combine-symmetries.tex56
1 files changed, 56 insertions, 0 deletions
diff --git a/buch/papers/punktgruppen/tikz/combine-symmetries.tex b/buch/papers/punktgruppen/tikz/combine-symmetries.tex
new file mode 100644
index 0000000..84e0a76
--- /dev/null
+++ b/buch/papers/punktgruppen/tikz/combine-symmetries.tex
@@ -0,0 +1,56 @@
+\documentclass[tikz]{standalone}
+\usepackage{amsmath}
+\usepackage{times}
+\usepackage{txfonts}
+
+\usetikzlibrary{arrows}
+\usetikzlibrary{intersections}
+\usetikzlibrary{math}
+\usetikzlibrary{positioning}
+\usetikzlibrary{arrows.meta}
+\usetikzlibrary{shapes.misc}
+\usetikzlibrary{calc}
+
+\begin{document}
+\begin{tikzpicture}[
+ dot/.style = {
+ draw, circle, thick, black, fill = gray!40!white,
+ minimum size = 2mm,
+ inner sep = 0pt,
+ outer sep = 1mm,
+ },
+ ]
+
+ \node[dot] (A1) at (0,0) {};
+ \node[below left] at (A1) {\(A\)};
+
+ \node[dot] (A2) at (2.5,0) {};
+ \node[below right] at (A2) {\(A'\)};
+
+ \draw[red!80!black, thick, ->]
+ (A1) to node[midway, below] {\(\vec{Q}\)} (A2);
+
+ \node[dot] (B1) at (120:2.5) {};
+ \node[above left] at (B1) {\(B\)};
+
+ \draw[green!70!black, thick, ->]
+ (A1) ++(.5,0) arc (0:120:.5)
+ node[midway, above, xshift=1mm] {\(C_n\)};
+ \draw[red!80!black, dashed, thick, ->] (A1) to (B1);
+
+ \node[dot] (B2) at ($(A2)+(60:2.5)$) {};
+ \node[above right] at (B2) {\(B'\)};
+
+ \draw[green!70!black, thick, dashed, ->]
+ (A2) ++(-.5,0) arc (180:60:.5);
+ \draw[red!80!black, dashed, thick, ->] (A2) to (B2);
+
+ \draw[yellow!50!orange, thick, ->]
+ (B1) to node[above, midway] {\(\vec{Q}'\)} (B2);
+
+ \draw[gray, dashed, thick] (A1) to (A1 |- B1) node (Xl) {};
+ \draw[gray, dashed, thick] (A2) to (A2 |- B2) node (Xr) {};
+ \node[above left, xshift=-2mm] at (Xl) {\(x\)};
+ \node[above right, xshift= 2mm] at (Xr) {\(x\)};
+\end{tikzpicture}
+\end{document}