-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcanvas-bg-colors.tex
180 lines (141 loc) · 4.51 KB
/
canvas-bg-colors.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
% !TEX program = xelatex
\documentclass{article}
% adapted canvas from the Value Proposition Canvas by Osterwalder
% (Wiley / Strategyzer)
% https://www.strategyzer.com/canvas/value-proposition-canvas
\usepackage[a3paper,landscape,margin=0in]{geometry}
\usepackage[dutch]{babel}
\usepackage{enumitem}
\usepackage{fontspec}
\usepackage{fontawesome5}
\renewcommand{\familydefault}{\sfdefault}
\pagenumbering{gobble} % supress page numbers
\usepackage{xcolor}
\usepackage[outline]{contour}
\usepackage{tikz}
\title{\vspace{-1em}Value Proposition Canvas (Osterwalder)}
\author{Requirements Engineering, Groep 2}
\date{
\textbf{\color{black!50}Versie:} \today
}
\usetikzlibrary{shapes,shapes.multipart}
\begin{document}
\maketitle
\centering
\def\layersep{49em}
\def\layerwidth{49em}
\linespread{1.5}
\vfill
\makebox[\textwidth][c]{
\begin{tikzpicture}
% CUSTOMER CIRCLE
\begin{scope}[xshift=0.5\textwidth]
\def\R{0.5*\layerwidth}
\node [
circle,
draw,
minimum width=\layerwidth,
outer sep=0,
line width=0.4em
] (a) {};
\draw [line width=.2em] (a.center) -- (60:\R);
\draw [->, line width=.2em] (a.center) -- (180:1.2*\R);
\draw [line width=.2em] (a.center) -- (300:\R);
% Jobs
%\draw[line width=.4em, fill=green!30] (0,0) -- (-60:\R) arc(-60:60:\R) -- cycle;
% Gains
%\draw[line width=.4em, fill=green!30] (0,0) -- (60:\R) arc(60:180:\R) -- cycle;
% Pains
%\draw[line width=.4em, fill=green!30] (0,0) -- (180:\R) arc(180:300:\R) -- cycle;
% Customer Jobs
\node [
text width=18em,
minimum height=24em,
text centered
] at (0:\R/2) {
\faIcon{tasks} \\
{\huge Taken \\}
{\large (Customer Jobs)}
};
% Gains
\node [
text width=21em,
text centered,
minimum height=20em,
] at (120:\R/2) {
\faIcon[regular]{grin-wink} \\
{\huge Verbeteringen \\}
{\large (Gains)}
};
% Pains
\node [
text width=21em,
text centered,
minimum height=20em,
] at (240:\R/2) {
\faIcon[regular]{tired} \\
{\huge Verslechteringen \\}
{\large (Pains)}
};
\node [circle, fill=white] at (0:0) {
\huge\faIcon[regular]{smile-beam}%
};
\end{scope}
% GIFT BOX
\node [
rectangle,
draw,
minimum width=\layerwidth,
minimum height=\layerwidth,
outer sep=0,
line width=0.4em
] (b) {};
% gain creators bg
%\node[anchor=north east,draw,line width=.2em,fill=green!30,trapezium,trapezium left angle=-45,trapezium right angle=0,minimum width=0.99*\layerwidth,] at (b.north east) {};
% pain relievers bg
%\node[anchor=south east,draw,line width=.2em,fill=green!30,trapezium, trapezium left angle=45,trapezium right angle=0,minimum width=0.99*\layerwidth,] at (b.south east) {};
% products and services bg
%\node[anchor=south,draw,line width=.2em,fill=green!30,regular polygon,regular polygon sides=3,rotate=-90,minimum width=1.15*\layerwidth,yscale=0.58,] at (b.west) {};
\draw [->, line width=.2em] (b.center) -- (0:0.6*\layerwidth);
\draw [line width=.2em] (b.center) -- (135:0.706*\layerwidth);
\draw [line width=.2em] (b.center) -- (225:0.706*\layerwidth);
% Gain Creators
\node [
text width=0.5*\layerwidth,
minimum height=0.45*\layerwidth,
text centered
] at (45:0.35*\layerwidth) {
\faIcon{chart-line} \\
{\huge Winstgevers \\}
{\large (Gain Creators)}
};
% Products and Services
\node [
rectangle,
anchor=west,
text width=0.35*\layerwidth,
text centered,
minimum height=18em,
outer sep=0
] at (180:0.495*\layerwidth) {
\faIcon{concierge-bell} \\
{\huge Producten~\& \\ diensten} \\
{\large (Products and Services)}
};
% Pain Relievers
\node [
text width=0.5*\layerwidth,
minimum height=0.45*\layerwidth,
text centered
] at (315:0.35*\layerwidth) {
\faIcon{capsules} \\
{\huge Pijnverlichters \\}
{\large (Pain Relievers)}
};
\node [circle, fill=white] at (0:0) {
\Huge\faIcon{gift}
};
\end{tikzpicture}
}
\vfill
\end{document}