-
Notifications
You must be signed in to change notification settings - Fork 0
/
research-cycle.tex
27 lines (22 loc) · 1021 Bytes
/
research-cycle.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
\documentclass[border=2mm]{standalone}
\usepackage{charter}
\usepackage{tikz}
\usepackage{xcolor}
\definecolor{blue}{RGB}{0, 114, 178}
\definecolor{red}{RGB}{213, 94, 0}
\begin{document}
\begin{tikzpicture}
\foreach \a/\t in {90/Theory, 0/Prediction, -90/Observation, -180/Pattern}{
\node (\t) at (\a:2cm) {\textbf{\t}};
}
% Circle lines
\draw[-latex, thick, red] (90-25:2cm) arc (90-25:0+10:2cm);
\draw[-latex, thick, red] (0-10:2cm) arc (0-10:-90+30:2cm);
\draw[-latex, thick, blue] (-90-30:2cm) arc (-90-30:-180+10:2cm);
\draw[-latex, thick, blue] (-180-10:2cm) arc (-180-10:-270+25:2cm);
% Exploratory
\draw[latex-, thick, blue] (-3.5,2) -- (-3.5,-2) node[blue, midway, anchor=north, rotate=90] {Inductive reasoning} node[blue, midway, anchor=south, rotate=90] {Exploratory research};
% Deductive
\draw[-latex, thick, red] (3.5,2) -- (3.5,-2) node[red, midway, anchor=south, rotate=90] {Deductive reasoning} node[red, midway, anchor=north, rotate=90] {Confirmatory research};
\end{tikzpicture}
\end{document}