input1.tex
807 Bytes
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
31
32
33
34
35
36
37
38
39
\hspace{2cm}
\begin{tikzpicture}[scale=0.25]
\draw (0,-5)--(0,-0.5);
\foreach \x in {0,1.5,3}{
\begin{scope}[xshift=\x cm]
\coordinate (O) at (0,0) ;
\coordinate (A) at (0.5,0) ;
\coordinate (B) at (1,0) ;
\coordinate (C) at (1.5,0) ;
\coordinate (D) at (0.5,-4.5) ;
\coordinate (E) at (1,-4.5) ;
\coordinate (F) at (0,-5) ;
\coordinate (G) at (1.5,-5) ;
\coordinate (H) at (1.5,-0.5) ;
\draw (O)--(A)--(B)--(C)
(F)--(G)
(A)--(D)
(B)--(E)
(G)--(H);
\end{scope}
}
\foreach \y in {-4,5}{
\begin{scope}[xshift=\y cm]
\foreach \x in {0,.5,...,3}{
\begin{scope}[xshift=\x cm]
\coordinate (O) at (0,0);
\coordinate (A) at (0.5,0);
\coordinate (B) at (0,-5);
\coordinate (C) at (0.5,-5);
\draw (O)--(A)
(O)--(B)--(C);
\end{scope}
}
\draw (3.5,-5)--(3.5,0);
\end{scope}
}
\end{tikzpicture}