summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/tufte-latex/graphics
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-11-17 01:23:04 +0000
committerKarl Berry <karl@freefriends.org>2008-11-17 01:23:04 +0000
commit3ff3de6f9871e3d4b2fba4c616fa3a83e2ee39ab (patch)
tree034c446908f474c08bcdb8912f931a144dad61f2 /Master/texmf-dist/doc/latex/tufte-latex/graphics
parent7501fa1170fbcbcbaad8364cc865a056a9aa90c0 (diff)
tufte-latex update (16nov08)
git-svn-id: svn://tug.org/texlive/trunk@11312 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/tufte-latex/graphics')
-rw-r--r--Master/texmf-dist/doc/latex/tufte-latex/graphics/hilberpgfcvs.tex.bak43
1 files changed, 0 insertions, 43 deletions
diff --git a/Master/texmf-dist/doc/latex/tufte-latex/graphics/hilberpgfcvs.tex.bak b/Master/texmf-dist/doc/latex/tufte-latex/graphics/hilberpgfcvs.tex.bak
deleted file mode 100644
index 3e781bd21e1..00000000000
--- a/Master/texmf-dist/doc/latex/tufte-latex/graphics/hilberpgfcvs.tex.bak
+++ /dev/null
@@ -1,43 +0,0 @@
-\title{Hilbert Curves}
-\author{}
-\date{}
-
-\documentclass{tufte-handout}
-
-\usepackage{tikz}
-
-\usepackage[active,tightpage]{preview}
-\PreviewEnvironment{tikzpicture}
-\usetikzlibrary{lindenmayersystems,positioning}
-
-\begin{document}
-
-\pgfdeclarelindenmayersystem{Hilbert curve}{
- \symbol{X}{\pgflsystemdrawforward}
- \symbol{+}{\pgflsystemturnright} % Explicitly define + and - symbols.
- \symbol{-}{\pgflsystemturnleft}
- \rule{A -> +BX-AXA-XB+}
- \rule{B -> -AX+BXB+XA-}
-}
-
-\def\scalefac{0.6}
-% Draw a hilbert curve of order n
-% Usage:
-% \hilbertvurve[scale]{order}
-\newcommand\hilbertcurve[2][1]{
-\tikz \draw[scale=\scalefac*#1,rotate=90,lindenmayer system={Hilbert curve, axiom=A, order=#2,angle=90}]
- lindenmayer system;
-}
-\maketitle
-
-\begin{figure}[h!]
-\begin{tikzpicture}[node distance=0cm,every path/.style={thin}]
- \node[label={above:$n=1$}] (n1) {\hilbertcurve[18]{1}};
- \node[label={above:$n=2$},right=of n1] (n2) {\hilbertcurve[6]{2}};
- \node[label={above:$n=3$},right=of n2] (n3) {\hilbertcurve[2.6]{3}};
- \node[label={above:$n=4$},right=of n3] (n4) {\hilbertcurve[1.2]{4}};
- \node[label={above:$n=5$},right=of n4] (n5) {\hilbertcurve[0.58]{5}};
-\end{tikzpicture}
-\end{figure}
-
-\end{document}