diff options
author | JODBaer <JODBaer@github.com> | 2021-07-26 14:15:57 +0200 |
---|---|---|
committer | JODBaer <JODBaer@github.com> | 2021-07-26 14:15:57 +0200 |
commit | 9356db2fc0d95e60043c6ce62fa906964869cae2 (patch) | |
tree | f3cf93ea263d777c2396ee5e21369ec99868d53b /buch/papers/punktgruppen/tikz/lattice.tex | |
parent | update (diff) | |
parent | Merge pull request #45 from NaoPross/master (diff) | |
download | SeminarMatrizen-9356db2fc0d95e60043c6ce62fa906964869cae2.tar.gz SeminarMatrizen-9356db2fc0d95e60043c6ce62fa906964869cae2.zip |
Merge commit '56443dfc2486e08b0ed3bf8ecc61c9ad8a83e213' into Baer
Diffstat (limited to 'buch/papers/punktgruppen/tikz/lattice.tex')
-rw-r--r-- | buch/papers/punktgruppen/tikz/lattice.tex | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/buch/papers/punktgruppen/tikz/lattice.tex b/buch/papers/punktgruppen/tikz/lattice.tex index 9c05af3..a6b1876 100644 --- a/buch/papers/punktgruppen/tikz/lattice.tex +++ b/buch/papers/punktgruppen/tikz/lattice.tex @@ -13,23 +13,24 @@ \begin{document} \begin{tikzpicture}[ - dot/.style = { - draw, circle, thick, black, fill = gray!40!white, - minimum size = 2mm, - inner sep = 0pt, - outer sep = 1mm, - }, + >=latex, + 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); + \clip (-2,-2) rectangle (7,2); \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[black, thick] (-2, -2) rectangle (7,2); \draw[red!80!black, thick, ->] (N00) to node[midway, below] {\(\vec{a}_1\)} (N10); |