Ian Jauslin
summaryrefslogtreecommitdiff
blob: ec66a7cf454526a3b2244723d6fee7a3a4c90d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
\documentclass{standalone}

\usepackage{tikz}
\usepackage{graphene}

\begin{document}
\begin{tikzpicture}
  \graphene{(0,0)}{3}{3}

  \foreach \i in {0,...,3}{
    \draw[color=blue](-1,-\i*\sqrtTh)--++(1.5*2*\i+3,\sqrtThOT*2*\i+\sqrtTh);
  }
  \foreach \i in {0,...,3}{
    \draw[color=blue](0.5+3*\i,-3.5*\sqrtTh)--++(-1.5*2*\i+12,-\sqrtThOT*2*\i+4*\sqrtTh);
  }

  \foreach \i in {0,...,3}{
    \draw[color=blue](-1,-\i*\sqrtTh)--++(-1.5*2*\i+10.5,+\sqrtThOT*2*\i-3.5*\sqrtTh);
  }
  \foreach \i in {0,...,3}{
    \draw[color=blue](-1+3*\i,\sqrtTh)--++(-1.5*2*\i+13.5,\sqrtThOT*2*\i-4.5*\sqrtTh);
  }

  \draw[color=red] (6,-\sqrtTh)++(0.5,.6)node[rotate=30]{$l_1$};
  \draw[color=red](6,-\sqrtTh)++(0.5,-.6)node[rotate=-30]{$l_2$};
  \pgfsetarrowsend{latex};
  \draw[color=red,line width=1.5pt](6,-\sqrtTh)--++\Lo;
  \draw[color=red,line width=1.5pt](6,-\sqrtTh)--++\Lt;
\end{tikzpicture}
\end{document}