-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreglas_ortograficas.html
151 lines (105 loc) · 4.97 KB
/
reglas_ortograficas.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Reglas Ortográficas</title>
<meta name="viewport" content="width=device-width">
<!-- <meta name="description" content="description here"> -->
<link rel="root" href=""/> <!-- for JS -->
<link rel="canonical" href="https://ahumadao.github.io/reglas_ortograficas.html">
<!-- Base jQuery-UI styles -->
<link rel="stylesheet" href="css/jquery-ui-redmond.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- CSS for embedded visualizations -->
<link rel="stylesheet" href="css/style-vis.css">
<!-- head.js, required for embedding -->
<script type="text/javascript" src="lib/ext/head.load.min.js"></script>
</head>
<body>
<header class="site-header">
<div class="wrap">
<a class="topnav" href="https://ahumadao.github.io"> Inicio </a>
<a class="topnav" href="https://ahumadao.github.io/reglas_generales" target="#">Reglas Generales</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_positivas">Reglas Positivas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_negativas">Reglas Negativas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_ortograficas">Reglas Ortográficas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_documento">Reglas Documento</a>
<span class="site-title-topnav">Annodoc</span>
</div>
</header>
<div class="page-content">
<div class="wrap">
<div class="entry">
<header class="entry-header">
<h1>Reglas Ortográficas</h1>
</header>
<article class="entry-content">
<p>En esta página se describirán las reglas positivas para el proceso de anotación de metástasis a distancia (M), es decir, aquello que efectivamente debe ser etiquetado por los anotadores.</p>
<h2 id="contenido">Contenido</h2>
<ul>
<li><a href="#Otros-idiomas">Otros idiomas</a></li>
<li><a href="#errores-tipográficos">Errores tipográficos</a></li>
<li><a href="#espacios-erróneos">Espacios erróneos</a></li>
<li><a href="#no-etiquetar-los-espacios-flanqueantes-en-blanco-o-puntuación-innecesaria">No etiquetar los espacios flanqueantes en blanco o puntuación innecesaria</a></li>
</ul>
<h2 id="otros-idiomas">Otros idiomas</h2>
<p>Las menciones en otros idiomas diferentes del castellano deben ser anotados, independientemente del lenguaje.</p>
<h2 id="errores-tipográficos">Errores tipográficos</h2>
<p>Aquellas menciones de metástasis a distancia (que sigan las reglas generales de anotación) y que tengan errores tipográficos, deben ser anotadas.</p>
<h2 id="espacios-erróneos">Espacios erróneos</h2>
<p>Las palabras separadas en diversos tokens de texto por espacios erróneos deberán ser anotadas como una única entidad</p>
<h2 id="no-etiquetar-los-espacios-flanqueantes-en-blanco-o-puntuación-innecesaria">No etiquetar los espacios flanqueantes en blanco o puntuación innecesaria</h2>
<p>No etiquetar los espacios en blanco, puntos, comas, guiones, etc. que flanquean una mención de metástasis a distancia. Los anotadores deberían intentar definir las menciones de la manera más precisa, evitando caracteres innecesarios. No anotar por ejemplo, puntos, comas y espacios al principio y fin de cada frase.</p>
<hr />
</article>
</div>
</div>
</div>
<footer class="site-footer">
<div class="wrap">
<p style="float:right"> Ricardo Ahumada, Pablo Báez. 2021 </p>
</div>
</footer>
</body>
<!-- support for embedded visualizations -->
<script type="text/javascript">
var root = ''; // filled in by jekyll
head.js(
// External libraries
root + 'lib/ext/jquery.min.js',
root + 'lib/ext/jquery.svg.min.js',
root + 'lib/ext/jquery.svgdom.min.js',
root + 'lib/ext/jquery-ui.min.js',
root + 'lib/ext/waypoints.min.js',
// brat helper modules
root + 'lib/brat/configuration.js',
root + 'lib/brat/util.js',
root + 'lib/brat/annotation_log.js',
root + 'lib/ext/webfont.js',
// brat main modules
root + 'lib/brat/dispatcher.js',
root + 'lib/brat/url_monitor.js',
root + 'lib/brat/visualizer.js',
// external parsing libraries
'https://spyysalo.github.io/conllu.js/conllu.js',
// annotation documentation support
root + 'lib/local/annodoc.js',
// project-specific collection data
root + 'lib/local/collections.js',
// project-specific configuration
root + 'lib/local/config.js'
);
var webFontURLs = [
root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'static/fonts/Liberation_Sans-Regular.ttf'
];
head.ready(function() {
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = '';
// performs all embedding and support functions
Annodoc.activate(Config.bratCollData, Collections.listing);
});
</script>
</html>