-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
213 lines (182 loc) · 9.22 KB
/
index.html
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!doctype html>
<html lang="en">
<head>
<title>CoSMO - Home</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="author" content="Carlo Teo Pedretti, Francesca Mangialardo, Mattia Spadoni">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- internal style -->
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Goudy+Bookletter+1911|Space+Mono|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Material Kit CSS -->
<link href="assets/css/material-kit.css?v=2.0.5" rel="stylesheet" />
<link rel="icon" href="images/logo.png">
</head>
<body>
<!-- barra di navigazione -->
<nav class="navbar navbar-color-on-scroll fixed-top navbar-transparent navbar-expand-lg" color-on-scroll="100">
<div class="container">
<div class="navbar-translate">
<a class="navbar-brand" href="#">
<img src="images/logo.png" id="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">
Home
</a>
</li>
<li class="dropdown nav-item">
<a href="#" class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false">
<i class="material-icons">apps</i> Project
</a>
<div class="dropdown-menu">
<a href="domain.html" class="dropdown-item">
The Domain
</a>
<a href="extraction.html" class="dropdown-item">
Knowledge Extraction
</a>
<a href="ontology.html" class="dropdown-item">
CoSMO - The Ontology
</a>
<div class="dropdown-divider"></div>
<a href="overview.html" class="dropdown-item">
Project Overview
</a>
</div>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">
Contact
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- fine barra di navigazione -->
<!-- jumbotron -->
<div class="page-header header-filter" data-parallax="true" style="background-image: url('images/jumbo10.png')">
<div class="container">
<div class="row">
<div class="col-md-8 ml-auto mr-auto">
<div class="brand text-center">
<h1></h1>
<p class="text-center" style="font-family:'Space Mono', monospace;font-size: 1.8rem;"></p>
</div>
</div>
</div>
</div>
</div>
<!-- fine jumbotron -->
<!-- main content -->
<div class="main main-raised">
<div class="container">
<div class="section">
<!-- griglia icone 1 -->
<div class="features">
<div class="row" style="text-align: center;">
<div class="col-md-4">
<div class="info">
<div class="icon">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x icon-background"></i>
<i class="fab fa-acquisitions-incorporated fa-stack-1x"></i>
</span>
</div>
<h4 class="info-title"><a href="domain.html">The Domain</a></h4>
<p>Click the info title to see the Entity Relationship Model of our project.</p>
</div>
</div>
<div class="col-md-4">
<div class="info">
<div class="icon">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x icon-background"></i>
<i class="fas fa-tools fa-stack-1x"></i>
</span>
</div>
<h4 class="info-title"><a href="extraction.html">Knowledge Extraction</a></h4>
<p>Click the info title to see the collection of items.</p>
</div>
</div>
<div class="col-md-4">
<div class="info">
<div class="icon">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x icon-background"></i>
<i class="fas fa-cogs fa-stack-1x"></i>
</span>
</div>
<h4 class="info-title"><a href="ontology.html">CoSMO</a></h4>
<p>Click the info title to see the alignment table for items metadata.</p>
</div>
</div>
</div>
</div>
<hr>
<!-- fine griglia icone 1 -->
<div style="position: relative;">
<h2 class="title">What is CoSMO Project?</h2>
<p><b>CoSMO</b> (<b>C</b>alvin<b>o</b> <b>S</b>ix <b>M</b>emos <b>O</b>ntology) tries to conceptualise and formalise the interpretive process carried out by Calvino in the first chapter “Lightness” of his “Six Memos for the Next Millennium”, 1985. The book was written to reflect on certain values, qualities, or peculiarities of literature identified by the author and situated within the perspective of the new millennium. The writer’s ideas were grounded and explained through direct textual examples (citations, references) belonging to texts of various periods and authors.</p>
<p>We decided to build the ontology to create a way to apply this critical process to new texts.</p>
<p>In our work, we tried to give an order to the great multiplicity of interrelated ideas expressed in the chapter. The process was fairly challenging because of the aforementioned quantity of topics and the intrinsic difficulty of dealing with such abstract literary concepts.</p>
<p>After a careful reading of the text, we deduced some fundamental concepts that led the critical analysis and were therefore identified as features that a text should have or not according to the writer. We assigned them into classes, the main of which are "Lightness" and "Heaviness" as naturally opposed concepts. They both have subclasses that explain some particular manifestations. For example, Lightness is linked to light, motion, granularity.</p>
<p>We also felt the need to introduce some concepts and relations on rhetorical effects (like repetitions, omissions, similarity). Although they were not explicitly analysed or mentioned in the text, they were, in our opinion, necessary to validate our interpretation in an objective way.</p>
</div>
<!-- fine main content -->
<!-- fine griglia icone 2 -->
</div>
</div>
</div>
<!-- INIZIO FOOTER -->
<footer class="footer footer-default">
<div class="container">
<nav class="float-left">
<ul>
<li>
<a href="https://creativecommons.org/licenses/by-sa/4.0/">
Copyright Creative Commons
</a>
</li>
</ul>
</nav>
<div class="copyright float-right">
<script>
document.write(new Date().getFullYear())
</script>, CoSMO has been implemented with <i class="material-icons">favorite</i> by
Francesca Mangialardo, Carlo Teo Pedretti and Mattia Spadoni.
</div>
</div>
</footer>
<!-- FINE FOOTER -->
<!-- Core JS Files -->
<script src="assets/js/core/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="assets/js/core/bootstrap-material-design.min.js" type="text/javascript"></script>
<script src="assets/js/plugins/moment.min.js"></script>
<!-- Plugin for the Datepicker, full documentation here: https://github.com/Eonasdan/bootstrap-datetimepicker -->
<script src="assets/js/plugins/bootstrap-datetimepicker.js" type="text/javascript"></script>
<!-- Plugin for the Sliders, full documentation here: http://refreshless.com/nouislider/ -->
<script src="assets/js/plugins/nouislider.min.js" type="text/javascript"></script>
<!-- Google Maps Plugin -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></script>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- Control Center for Material Kit: parallax effects, scripts for the example pages etc -->
<script src="assets/js/material-kit.js?v=2.0.5" type="text/javascript"></script>
</body>
</html>