Initial commit

This commit is contained in:
Ian Jauslin
2017-05-04 19:16:34 +00:00
commit 1b13e14750
35 changed files with 1735 additions and 0 deletions

1
figs/sliding/Makefile Symbolic link
View File

@ -0,0 +1 @@
../libs/Makefile

View File

@ -0,0 +1 @@
../../libs/shapes.sty

View File

@ -0,0 +1,16 @@
\documentclass{standalone}
\usepackage{tikz}
\usepackage{shapes}
\begin{document}
\begin{tikzpicture}
\clip(-1.01,-1.01)--(7.01,-1.01)--(7.01,5.01)--(-1.01,5.01)--cycle;
\foreach \i in {0,...,3}{
\ttsquare{cyan}{(2*\i,0)}
\ttsquare{cyan}{(2*\i+1,2)}
\ttsquare{cyan}{(2*\i,4)}
}
\ttsquare{cyan}{(-1,2)}
\end{tikzpicture}
\end{document}