aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/punktgruppen/tikz/lattice.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/lattice.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 '')
-rw-r--r--buch/papers/punktgruppen/tikz/lattice.tex39
1 files changed, 39 insertions, 0 deletions
diff --git a/buch/papers/punktgruppen/tikz/lattice.tex b/buch/papers/punktgruppen/tikz/lattice.tex
new file mode 100644
index 0000000..9c05af3
--- /dev/null
+++ b/buch/papers/punktgruppen/tikz/lattice.tex
@@ -0,0 +1,39 @@
+\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,
+ },
+ ]
+
+ \begin{scope}
+ \clip (-2,-2) rectangle (3,4);
+ \foreach \y in {-7,-6,...,7} {
+ \foreach \x in {-7,-6,...,7} {
+ \node[dot, xshift=3mm*\y] (N\x\y) at (\x, \y) {};
+ }
+ }
+ \end{scope}
+ \draw[black, thick] (-2, -2) rectangle (3,4);
+
+ \draw[red!80!black, thick, ->]
+ (N00) to node[midway, below] {\(\vec{a}_1\)} (N10);
+ \draw[cyan!80!black, thick, ->]
+ (N00) to node[midway, left] {\(\vec{a}_2\)} (N01);
+\end{tikzpicture}
+\end{document}