-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy paththicksystem.html
More file actions
104 lines (78 loc) · 4.31 KB
/
thicksystem.html
File metadata and controls
104 lines (78 loc) · 4.31 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ResearchSpace</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./styles/basic.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- Leave those next 4 lines if you care about users using IE8 -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
$(function(){
$(".includedHeader").load("header.html");
});
</script>
<script>
$(function(){
$(".includedFooter").load("footer.html");
});
</script>
<script>
function myFunction(e) {
if (e.id == 'menudemo') {
window.open("http://demo.researchspace.org", "", "width=1200,height=800,top=100,left=100");
}
if (e.id == 'git') {
window.open("https://github.com/researchspace/researchspace","", "width=1200,height=800,top=100,left=100")
}
}
</script>
</head>
<body>
<div class="container">
<div class="includedHeader"></div>
<div id="body">
<div>
<h2 style="text-align: center">ResearchSpace Concepts</h2>
<h3 style="text-align: center">Thick and Thin Systems</h3>
<p>In the discipline of History, social and cultural history revived, in the 1970s, a type of textual narrative which became
known as a 'Thick Description', a term coined by the anthropologist Clifford Geertz. This attempted to avoid perceived
issues of social science, quantitative and structural history methods and instead used more qualitative contextual and
interpretative approaches with an overall or underlying argument. This contrasts with 'Thin Descriptions',
the original factual and linear history narratives that removed context and interpretation leaving only what was 'empirically' known.
</p>
<p>
This return, or revival of, the narrative in the 1970s, attempted to provide a more accesible qualititative narrative but was better
suited to microhistory that examined very specific historical questions in detail. Micro historians beleived that these detailed
examinations support better generalisations and address larger questions because of better quality foundations.
</p>
<p>
In summary, more quantitative data approaches were seen as poor in terms of results and the difficulty to critique, and while structural history provided
highly complex landscapes it was argued that they lacked accessibility or were seen by some historians as deterministic. However, thick descriptions are
still difficult to write well, and have their own limitations in terms of sophistication of argument and the ability to
integrate and synthesise.
</p>
<p>
Most indexing or finding aid databases, might be equated to a thin description. They produce a database, and possibly, a network of facts
without enriching context.
</p>
<p>Semantic systems like ResearchSpace might be equated to Thick Descriptions. However, unlike their narrative counterpartsm, ResearchSpace
allows expressive contextualised data to be integrated and interconnected and therefore there is a direct relationship between the qualitative and quantitative but
also different levels of generality can be supported.
</p>
</div>
</div>
<div class="includedFooter"></div>
</div>
</body>
</html>