-
Notifications
You must be signed in to change notification settings - Fork 0
/
breathing-space.tex
59 lines (55 loc) · 1.44 KB
/
breathing-space.tex
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
\documentclass{article}
\usepackage{tikz}
\thispagestyle{empty}
\pagestyle{empty}
\begin{document}
\begin{tikzpicture}
[remember picture, overlay, very thick, dashed]
\draw (current page.west)
-- ++(right:8.5in)
;
\draw (current page.west)
++(right:8.5in/3) edge ++(down:11in/2)
++(right:8.5in/3) edge ++(down:11in/2)
;
\draw (current page.north) ++(down:11in/4)
node[text width=8.5in, align=center, scale=4]
{take a breath}
;
\foreach \x in {1,2,3}
\draw (current page.west)
++({8.5in*(\x/3-1/6)}, -11in/4)
node[scale=10] {\x}
;
\end{tikzpicture}
\newpage
\begin{tikzpicture}
[remember picture, overlay, very thick, dashed]
\draw (current page.west) ++(up:11in/4)
-- ++(right:8.5in)
;
\draw (current page.west) ++(up:11in/4)
++(right:8.5in/3) edge ++(down:11in*3/4)
++(right:8.5in/3) edge ++(down:11in*3/4)
;
\draw (current page.north) ++(down:11in/8)
node[text width=8.5in, align=center, scale=4]
{practice set goal reward}
;
\foreach \x in {1,2,3}
\draw (current page.west)
++({8.5in*(\x/3-1/6)}, 0.25in)
node[scale=5, text width=8.5in/3, align=center] {goal \\[15mm] reward}
;
\end{tikzpicture}
\newpage
\begin{tikzpicture}
[remember picture, overlay, very thick, dashed]
\draw (current page.north east)
++(-8.5in/3, -11in/4)
node[rotate=270, scale=7] {Goal}
++(-8.5in/3, 0in)
node[rotate=270, scale=7] {Reward}
;
\end{tikzpicture}
\end{document}