blob: 6793cd40b6a80aaee5bb30795b9032f28080619b (
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
|
% tree.tex
% Patrick Simianer <p@simianer.de>
% YYYY-MM-DD
\documentclass{article}
\usepackage[graphics,tightpage,active]{preview}
\usepackage{tikz}
\PreviewEnvironment{tree}
\newlength{\imagewidth}
\newlength{\imagescale}
\usepackage{tikz}
\usepackage{tikz-qtree}
\begin{document}
\begin{tree}
\Tree [.S [.S [.S [.S [.S [.S [.S [.S [.S [.X it s a ] ] [.X metaphor , the ] ] [.X [.X over and over again ] , ] ] [.X and every time , ] ] [.X it makes ] ] [.X the big picture ] ] [.X greater than the sum of ] ] [.X the ] ] [.X pieces of [.X data ] ] ]
\end{tree}
\end{document}
|