-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnamed-entities.html
executable file
·610 lines (439 loc) · 25.2 KB
/
named-entities.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Named Entities</title>
<meta name="description" content="Workshop · Named Entities">
<meta name="author" content="José Luis Losada">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="apple-touch-icon" type="image/png" href="../manual/imagen/edigital.png">
<link rel="shortcut icon" type="image/x-icon" href="../manual/imagen/favicon.ico">
<!-- Hojas de estilo-->
<link rel="stylesheet" href="reveal/css/reveal.css">
<link rel="stylesheet" href="reveal/css/theme/simple.css">
<link rel="stylesheet" href="css/mychanges.css">
<!-- <link rel="stylesheet" href="reveal/css/theme/black.css"> -->
<!-- code syntax highlighting -->
<link rel="stylesheet" href="css/github.css">
<style>
.reveal .pre .code {
text-transform: none;
}
</style>
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal/css/print/pdf.css' : 'reveal/ss/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section> <!-- PORTADA E INDICE-->
<section id="portada"> <!--PORTADA-->
<h2>Named Entities</h2>
<h3>Encoding Names, Persons, Places and Dates</h3>
<h1 style="font-size:1.5em">
<span id="filete">
<i class="fas fa-users"></i>
<i class="fas fa-map-marked-alt"></i>
<i class="fas fa-calendar"></i></span>
</h1>
</section> <!--FIN PORTADA-->
<section id="indice"> <!--INDICE--> <!--ID de las secciones para hacer enlaces-->
<h3>Content</h3>
<div>
<ul>
<li><a href="#names">Names. Persons</a><span class="weiter">↡(3-21)</span></li>
<li><a href="#places">Names. Places</a><span class="weiter">↡(22-28)</span></li>
<li><a href="#dates">Dates</a><span class="weiter">↡(29-32)</span></li>
<li><a href="#biblio">References</a><span class="weiter">↡(33)</span></li>
</ul>
</div>
</section> <!--FIN INDICE-->
</section> <!--FIN PORTADA E INDICE-->
<section id="names">
<section>
<h3>TEI NAMES. PERSONS</h3>
</section>
<section>
<div class="cita">
Identifying what are now often referred to as <span class="resaltado"><i>named entities</i></span> from the rest of a sea of words is just as important a task for today’s computational linguist building a language understanding system, or today’s digital historian tracing social networks within a corpus of 18th century correspondence</div>
<div class="fuente">Lou Burnard (2014), </i><a href="http://books.openedition.org/oep/426"><i>What is the Text Encoding Initiative? </i></a>, Marseille: OpenEdition Press.</div>
</section>
<section data-transition = "none">
<h3>Persons, Places, Dates</h3>
<div class="cita">
<p>“I was born in the year 1632, in the city of York, of a good family, though not of that country, my father being a foreigner of Bremen, who settled first at Hull. He got a good estate by merchandise, and leaving off his trade, lived afterwards at York, from whence he had married my mother, whose relations were named Robinson, a very good family in that country, and from whom I was called Robinson Kreutznaer"</p>
</div>
<div class="fuente">Daniel Defoe, <i>The Life and Adventures of Robinson Crusoe</i>, 1719</div>
</section>
<section data-transition = "none">
<h3><span class="color_red">Persons</span>, <span class="color_sky">Places</span>, <span class="color_orange">Dates</span></h3>
<div class="cita">
<p>“I was born in the year <span class="color_orange">1632</span>, in the city of <span class="color_sky">York</span>, of a good family, though not of that country, my father being a foreigner of <span class="color_sky">Bremen</span>, who settled first at <span class="color_sky">Hull</span>. He got a good estate by merchandise, and leaving off his trade, lived afterwards at <span class="color_sky">York</span>, from whence he had married my mother, whose relations were named <span class="color_red">Robinson</span>, a very good family in that country, and from whom I was called <span class="color_red">Robinson Kreutznaer</span>”</p>
</div>
<div class="fuente">Daniel Defoe, <i>The Life and Adventures of Robinson Crusoe</i>, 1719</div>
</section>
<section id="rs" data-transition = "none">
<h3><span class="color_green">Referring string</span></h3>
<div class="cita">
<p>“<span class="color_green">I</span> was born in the year <span class="color_orange">1632</span>, in the city of <span class="color_sky">York</span>, of a good <span class="color_green">family</span>, though not of that <span class="color_green">country</span>, <span class="color_green">my father</span> being a foreigner of <span class="color_sky">Bremen</span>, <span class="color_green">who</span> settled first at <span class="color_sky">Hull</span>. <span class="color_green">He</span> got a good estate by merchandise, and leaving off <span class="color_green">his</span> trade, lived afterwards at <span class="color_sky">York</span>, from whence <span class="color_green">he</span> had married <span class="color_green">my mother</span>, whose relations were named <span class="color_red">Robinson</span>, a very good <span class="color_green">family</span> in that <span class="color_green">country</span>, and from whom <span class="color_green">I</span> was called <span class="color_red">Robinson Kreutznaer</span>”</p>
</div>
<div class="fuente">Daniel Defoe, <i>The Life and Adventures of Robinson Crusoe</i>, 1719</div>
</section>
<section>
<h3>Names in TEI</h3>
<h4>The TEI provides several ways of marking up names and nominal expressions.</h4>
<ul>
<a href="https://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONA">Core module</a>
<li> <span class="color_blue"><rs></span> contains a string which refers to a person or place: "my mother", "he".</li>
<li> <span class="color_blue"><name></span> contains a proper noun: "Robinson Kreutznaer", "Bremen".</li>
<li><span class="color_orange">@type</span> differentiates persons and places.</li>
<br>
<a href="https://www.tei-c.org/release/doc/tei-p5-doc/en/html/ND.html">More precise (extended module)</a>
<li><span class="color_blue"><persName></span>, <span class="color_blue"><placeName></span>, <span class="color_blue"><orgName></span>, <span class="color_blue"><surname></span>, <span class="color_blue"><forename></span>.</li>
</ul>
</section>
<section>
<h3>Encoding of names using the element <span class="color_blue"><name></span></h3>
<br>
<pre class="xml" style="font-size: 0.8em;"><code style="word-break: keep-all;">I was born in the year 1632, in the city of <name>York</name>, of a good family, though not of that country, my father being a foreigner of <name>Bremen</name>, who settled first at <name>Hull</name>. He got a good estate by merchandise, and leaving off his trade, lived afterwards at <name>York</name>, from whence he had married my mother, whose relations were named Robinson, a very good family in that country, and from whom I was called <name>Robinson Kreutznaer</name></code></pre>
</section>
<section>
<h3>Add the attribute <span class="color_orange">@type</span> to differenciate types of names</h3>
<br>
<pre class="xml" style="font-size: 0.8em;"><code style="word-break: keep-all;">I was born in the year 1632, in the city of <name type="place">York</name>, of a good family, though not of that country, my father being a foreigner of <name type="place">Bremen</name>, who settled first at <name type="place">Hull</name>. He got a good estate by merchandise, and leaving off his trade, lived afterwards at <name type="place">York</name>, from whence he had married my mother, whose relations were named Robinson, a very good family in that country, and from whom I was called <name
type="person">Robinson Kreutznaer</name></code></pre>
</section>
<section>
<h3>More precise tagging: <i>namesdates</i> module</h3>
<br>
<pre class="xml" style="font-size: 0.8em;"><code style="word-break: keep-all;">He got a good estate by merchandise, and leaving off his trade, lived afterwards at <placeName>York</placeName>, from whence he had married my mother, whose relations were named Robinson, a very good family in that country, and from whom I was called
<persName>
<forename>Robinson</forename>
<surname>Kreutznaer</surname>
</persName>
</pre></code>
</section>
<section>
<h3>Components of personal names</h3>
<ul>
<li><span class="color_blue"><forename></span>, a forename or given name.</li>
<li><span class="color_blue"><surname></span>, a family name.</li>
<li><span class="color_blue"><roleName></span>, role or position in society (President, Queen).</li>
<li><span class="color_blue"><addName></span>, nickname, pseudonym, alias.</li>
<li><span class="color_blue"><nameLink></span>, connecting phrase or link (de, of, van, von).</li>
</ul>
<pre class="xml" style="font-size: 0.8em; text-transform: all;"><code><persName>
<forename>Marie-Henri</forename>
<surname>Beyle</surname>
<addName type="pseudonym">Stendhal</addName>
</persName></code></pre>
</section>
<section>
<h3>Signs in the text vs. the thing signs refer to</h3>
<h4><i>Signifiant</i> (signifier) vs. <i>Signifié</i> (signified)</h4>
<div class="cita"><p>"[...] and from whom I was called <span class="color_red">Robinson Kreutznaer</span>; but, by the usual corruption of words in England, we are now called —<a title="'Or rather' (used to emphasize a more appropriate word than one just used)">nay</a> we call ourselves and write our name— <span class="color_red">Crusoe</span>; and so my companions always called me."</p> </div>
<h3 style="text-align: center;">Robinson Crusoe</h3>
</section>
<section>
<h3>TEI distintion: <span class="color_blue"><persName></span> vs. <span class="color_blue"><person></span></h3>
<h4>Encoding of references</h4>
<pre class="xml" style="font-size: 0.5em;"><code style="word-break: keep-all;">I was called <persName>Robinson Kreutznaer </persName>; but, by the usual corruption of words in <placeName>England</placeName>, we are now called —nay we call ourselves and write our name— <persName>Crusoe</persName></code></pre>
<br>
<h4>Encoding of referenced entities</h4>
<pre class="xml" style="font-size: 0.6em;"><code><person>
<persName>
<forename>Robinson</forename>
<surname xml:lang="en" type="corrupted">Crusoe</surname>
<surname xml:lang="de" type="birth">Kreutznaer</surname>
</persName>
<birth when="1632">1632 <placeName>York</placeName>
</birth>
</person></code></pre>
</section>
<section data-markdown>
<textarea data-template>
### Reason for encoding **entities**
- To standardise references to the same thing: “Robinson Kreutznaer”, “Crusoe”, “castaway”.
- To facilitate a more detailed encoding of source documents (historical materials).
- To represent implicit data in a uniform way.
- To enable fine-grained searching of data-centric projects:
- to set references to authority files and gazeteers (INSI, GeoNames, VIAF);
- biographical dictionaries;
- geographical dictionaries;
- extracted indices.
</textarea>
</section>
<section>
<h3>Organising named entities</h3>
<ul><li>Usually stored in the <span class="color_blue"><teiHeader></span></li></ul>
<pre class="xml"><code data-line-numbers="5-8, 11-13"><teiHeader>
<fileDesc>...</fileDesc>
<profileDesc>
<particDesc>
<listPerson>
<person>...</person>
<person>...</person>
</listPerson>
</particDesc>
<settingDesc>
<listPlace>
<place>...</place>
</listPlace>
</settingDesc>
</profileDesc>
</teiHeader></code></pre>
<ul><li>Create a separate XML file using <span class="color_blue"><listPerson></span> entries.</li></ul>
</section>
<section data-background="imagenes/point.png">
<h3>Linking the association with <span class="color_orange">@xml:id</span> ← <span class="color_orange">@ref</span> </h3>
<pre class="xml"><code data-line-numbers="4,11"><profileDesc>
<particDesc>
<listPerson>
<person xml:id="RC">
<persName>
<forename>Robinson</forename>
<surname type="corrupted">Crusoe</surname>
<surname type="birth">Kreutznaer</surname>
</persName>
<birth when="1632">1632</birth>
</person>
</listPerson>
</particDesc>
</profileDesc>
</code></pre>
<pre class="xml"><code style="word-break: keep-all;">and from whom I was called <persName ref="#RC">Robinson Kreutznaer</persName>; but, by the usual corruption of words in England, we are now called —nay we call ourselves and write our name— <persName ref="#RC">Crusoe</persName>; and so my companions always called me.
</code></pre>
</section>
<section>
<h3>Attribute <span class="color_orange">@ref</span> as pointing mechanism</h3>
<pre class="xml"> Entity defined within the same XML document <code> <persName ref="#RC">Robinson Kreutznaer</persName></code></pre>
<pre class="xml"> In some other place, refered to by means of an URI<code> <persName ref="http://www.example.com/fictionalcharacters.xml#RC">Robinson Kreutznaer</persName></code></pre>
<pre class="xml"> Reference an existing authority file<code><persName ref="http://www.isni.org/0000000123478267">Daniel Defoe</persName></code></pre>
</section>
<section>
<h3>Authority files: catalogs of names</h3>
<br>
<div class="imagen-texto">
<img src="imagenes/BNF_DanielDefoe.png"/>
</div>
<ul style="width: 55%; float: right;" >
<li>VIAF: <a href="https://viaf.org">Virtual International Authority</a></li>
<li>ISNI: <a href="http://www.isni.org">International Standard Name Identifier</a> (ISO Standard)</li>
<li>Most national libraries: <a href="https://data.bnf.fr">Bibliothèque nationale de France</a>; <a href="http://d-nb.info">Deutsche Nationalbibliothek</a></li>
<li>Perseus Digital Library: <a href="http://data.perseus.org">Classic authors</a></li>
</ul>
</section>
<section>
<h3>(other way of) Referencing authority files</h3>
<h4> Identifier in the <span class="color_blue"><idno></span> element
<pre class="xml"><code data-line-numbers="11"><person xml:id="S1783">
<persName>
<forename>Marie-Henri</forename>
<surname>Beyle</surname>
<addName type="pseudonym">Stendhal</addName>
</persName>
<birth when="1783-01-23">23-01-1783</birth>
<death when="1842-03-23">23-03-1842</death>
<occupation>writer</occupation>
<nationality>French</nationality>
<idno type="ISNI">0000000120981326</idno>
</person>
</code></pre>
</section>
<section>
<h3>more info for person?</h3>
<span class="color_blue"><birth>, <death>, <event>, <langKnowledge>, <faith>, <nationality>, <sex>, <age>, <occupation>, <note></span>, ...
</section>
</section>
<section>
<section id="places">
<h2>TEI PLACES</h2>
</section>
<section>
<h3>TEI distintion: <span class="color_blue"><placeName></span> vs. <span class="color_blue"><place></span></h3>
<h4>Encoding of references</h4>
<pre class="xml" style="font-size: 0.5em;"><code style="word-break: keep-all;">I was born in the year 1632, in the city of <placeName>York</placeName>, of a good family, though not of that <rs>country</rs></code></pre>
<h4>Encoding of referenced entities</h4>
<pre class="xml" style="font-size: 0.5em;"><code><profileDesc>
<particDesc>
<listPerson>...</listPerson>
</particDesc>
<settingDesc>
<listPlace>
<place xml:id="york">
<placeName>York</placeName>
<location>
<!--lat, long-->
<geo>53.95767,-1.082304</geo>
</location>
<idno type="GeoNames">2633352</idno>
</place>
</listPlace>
</settingDesc>
</profileDesc></code></pre>
</section>
<section data-background="imagenes/Europa_Buentig.jpg">
<h3><p class="cita-background">Geo-political place names</p> </h3>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</section>
<section>
<h3>Components of place names</h3>
<br>
<ul><li><span class="color_blue"><bloc></span> geo-political unit containing two or more nation states: <b>Europe</b>.</li>
<li><span class="color_blue"><country></span> geo-political unite: <b>Italy</b>.</li>
<li><span class="color_blue"><region></span> administrative unite: <b>Lazio</b>. </li>
<li><span class="color_blue"><settelment></span> name of a settlement: <b>Rome</b>. </li>
<li><span class="color_blue"><district></span> subdivision of a settlement: <b>Trastevere</b>.</li></ul>
</section>
<section>
<h3>Components of place names</h3>
<br>
<ul>
<li><span class="color_blue"><location></span>
<ul><li>geographical coordinates
<ul><li><span class="color_blue"><geo></span></li></ul></li>
<li>place name components</li>
<li>an address<ul><li><span class="color_blue"><address></span></li></ul></li>
</ul>
</ul>
</section>
<section>
<h3>Gazetteers: catalogs of places</h3>
<img src="imagenes/geonames_CH.png"/>
<ul>
<li><a href="https://www.geonames.org">GeoNames</a></li>
<li><a href="https://pleiades.stoa.org">Pleiades</a> (ancient places)</li>
<li><a href="https://peripleo.pelagios.org">Peripleo</a> (hub of gazetteers)</li>
<li><a href="http://europa.eu/webtools/rest/gisco/batchgeocoding/index_en.htm">European Comision</a> (batch geocoding)</li>
<li>Geolocation via gazetteers APIs</li>
</ul>
</section>
<section>
<h3>Fictional places</h3>
<pre><code><place type="fictional">
<placeName>Atlantis</placeName>
<location>
<offset>fifty leagues beyond</offset>
<placeName>The Pillars of <persName>Hercules</persName></placeName>
</location>
</place></code></pre>
<img src="imagenes/Atlantis_Kircher.png"/>
<div><span class="fuente" style="font-size: 0.4em">Kircher, <a href="https://archive.org/details/mundussubterrane00unse">Mundus Subterraneus</a>, 1665</span></div>
</section>
</section>
<section>
<section id="dates">
<h2>TEI DATES</h2>
</section>
<section>
<ul><h4>Core module: <a href="https://tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONADA">3.5.4 Dates and Times</a></h4>
<li><span class="color_blue"><date></span> a date in any format</li>
<li><span class="color_blue"><time></span> a phrase defining a time of day in any format </li>
<br>
<pre class="xml"><code>I was born in the year <date when="1632">1632</date>, in the city of <placeName ref="#york">York</placeName>, of a good family, though not of that country</code></pre>
</section>
<section>
<h3>Attributes for date</h3>
<ul>
<h4>To normalize elements that contain dates, times, etc. <b>in standard form (jjjj-mm-dd)</b>:</h4>
<li><span class="color_orange">@when</span> value of the date or time.</li>
<li><span class="color_orange">@notBefore</span> the earliest possible date.</li>
<li><span class="color_orange">@notAfter</span> the latest possible date.</li>
<li><span class="color_orange">@from</span> indicates the starting point of a period.</li>
<li><span class="color_orange">@to</span> indicates the ending point of a period.</li>
</ul>
</section>
<section>
<h3><span class="color_orange">@when</span> a useful way of normalizing or disambiguating</h3>
<br>
<pre class="xml"><code> <birth when="1788-02-22">22 February 1788</birth>
<birth when="1788-02-22">22 de febrero de 1788</birth>
<birth when="1788-02-22">22 février 1788</birth>
<birth when="1788-02-22">22/02/1788</birth></code></pre>
</section>
</section>
<!--
*****References****
-->
<section id="biblio">
<h3>References</h3>
<ul style="font-size: 0.7em;">
<li><i>A Gentle Introduction to XML, </i><a href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/SG.html">Guidelines for Electronic Text Encoding and Interchange</a>, TEI P5: Version 3.5.0. </li>
<li><i>digital.humanities @ Oxford, </i><a href="http://tei.it.ox.ac.uk/Talks/">TEI @ Oxford Teaching Pages</a>.</li>
<li>Lou Burnard (2014), </i><a href="http://books.openedition.org/oep/426"><i>What is the Text Encoding Initiative? How to add intelligent markup to digital resources </i></a>, Marseille: OpenEdition Press.</li>
<li>Christof Schöch (2014), <i>Digitale Textedition mit TEI</i>, <a href="https://de.dariah.eu/tei-tutorial">DARIAH TEI-Tutorial</a>.</li>
<li>Martina Scholger (2017), <a href="http://gams.uni-graz.at/o:dhoxss-2017-tei-names">Names, dates, people and places</a>.</li>
</ul>
</section>
<!--
*****************
*****CREDITOS****
*****************
-->
<section id="impressum">
<div><a href="http://www.ifr.uni.wroc.pl/pl/nasz-instytut/pracownicy/dr-jose-luis-losada-palenzuela">José Luis Losada Palenzuela</a>, <i>Named Entities.
Encoding Names, Persons, Places and Dates</i>, <a href="http://editio.github.io/presentations/named-entities.html"><http://editio.github.io/presentations/named-entities.html></a>, 2019.</div>
<h2 id="filete"><a href="http://editio.github.io/presentations/named-entities?print-pdf" title="To export to PDF. Go to this link and use the print dialog in your browser (CTRL/CMD+P)"><i style="font-size:24px;" class="fa"></i></a></h2>
<div ><a href="http://creativecommons.org/licenses/by-sa/4.0/"><img class="licencia" alt="License Creative Commons" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"></a></div>
</div>
</section> <!--impressum-->
</div> <!--End of slides container-->
</div>
<script src="reveal/lib/js/head.min.js"></script>
<script src="reveal/js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.configure({ slideNumber: "c/t" });
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'reveal/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/highlight/highlight.js', async: false, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal/plugin/zoom-js/zoom.js', async: true },
{ src: 'reveal/plugin/notes/notes.js', async: true }
]
});
</script>
<!--ESQUINAS MENU en TODAS DIAS-->
<div class="footer">
<p>José Luis Losada Palenzuela · 2019</p>
</div> <!--FIN FOOTER FIRMA-->
<div id="menu">
<a href="#/indice" title="Content">☰</a>
</div> <!--FIN INDICE-->
<div id="logo">
<a href="http://www.uni.wroc.pl"><img src="imagenes/logo_UWr_ang.png" title="Universty of Wrocław"/></a>
</div> <!--FIN LOGO-->
</body>
</html>