-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterreg_workshop.html
More file actions
executable file
·695 lines (527 loc) · 22.8 KB
/
interreg_workshop.html
File metadata and controls
executable file
·695 lines (527 loc) · 22.8 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
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Data, XML, Editions. Interreg Workshop</title>
<meta name="description" content="Data, XML, Editions. Interreg Workshop">
<meta name="author" content="José Luis Losada Palenzuela">
<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">
<!-- 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">
<div class="slides">
<!-- Any section element inside of this container is displayed as a slide -->
<!-- #################################################################### -->
<section id="portada"> <!--PORTADA-->
<h2 class="portada">
<p>Data, XML, Text edition</p>
</h2>
<br>
<br>
<h4 style="color: orange;">Humanistyka cyfrowa dla przyszłości</h4>
<h4>18-22.10.2021, Międzygórze/Wrocław</h4>
<a style="border-bottom: none" href="http://phc.uni.wroc.pl/interreg/"><img style="width: 50%; box-shadow: none; border-bottom: none" src="imagenes/interreg_logo.png"/></a>
</section>
<section> <!--DATA-->
<section data-markdown>
<textarea data-template>
## Data
- Books, paintings, plays, novels, poetry, literature = ¿data?
- Any document, information or testimony that allows us to gain knowledge of something: analogue data.
- As information arranged in a manner suitable for processing by a computer: digital data.
</textarea>
</section>
<section data-markdown>
<textarea data-template>
<div class="cita"> "[O]ne of the main problems since the earliest uses of computers and computational techniques in the humanities was the <span class="resaltado">representation of data</span> for input, processing, and output" <span class="fuente">[Vanhoutte 2013: 132]</span>
</div>
</textarea>
</section>
<section id="datos"><h3>Digital Humanities & textual data</h3>
<div class="imagen-texto"> <img src="imagenes/data_lego.jpg"/>
<div class="caption"><a href="https://web.stanford.edu/group/sdgc/cgi-bin/ycisl/?p=4927" target="_blank"> "The Lego Data Story"</a>, Stanford University, 4.09.2021</div>
</div>
<br />
<ul style="width: 55%; float: right;">
<li><i>datum</i> (latin: “what is given”); raw data ≠ ready to use.</li>
<li>Need to be located, generated, systematized and interpreted.</li>
<li>Input data, output data</li>
<li>Unstructured, structured, semi-structured data.</li>
<li>¿Big data in the humanities?</li>
</ul>
</section>
<section data-markdown style="font-size: 80%">
<textarea data-template >
| Types | Definition | File formats |
| --- | --- | --- |
| Unstructured data | Without an organization into separate, distinct, semantic units | Usually stored in plain file formats, e.g. TXT. |
| Semi-structured data | With a partial formal structure (mark-up language) that marks distinct units | Usually stored in XML or HTML files. The TEI vocabulary is also XML. |
| Structured data | With a concrete data model that explicitly defines the data | Files in table format such as CSV, as well as spreadsheets in Excel or OpenOffice formats. |
</textarea>
</section>
<section>
<code>1605 Miguel de Cervantes published the first part of Don Quixote. </code>
</section>
<section style="font-size: 1.7em">
<pre contenteditable=""><code><date>1605</date> <persName>Miguel de Cervantes</persName> published the first part of <title>Don Quixote</title>
</code></pre>
</section>
<section data-markdown style="font-size: 80%">
<textarea data-template >
| Item.Type | Author | Title | Year | Place |
| --- | --- | --- | --- | --- |
| book | Franco Moretti | Graphs, Maps and Trees | 2007 | London |
| book | Miguel de Cervantes | El ingenioso hidalgo don Quijote de la Mancha | 1605 | Madrid |
| book | Riccardo Mazza | Introduction to information visualization | 2009 | London |
</textarea>
</section>
<section data-markdown>
<textarea data-template >
| Variable | Variable | Variable | <i style="color: grey">Year</i> |
|-------------|-------------|-------------|-------------------------------------|
| observation | observation | observation | <i style="color: grey">2007</i> |
| observation | observation | observation | <i style="color: grey">1605</i> |
| observation | observation | observation | <i style="color: grey">2009</i> |
</textarea>
</section>
<!-- Item.Type, Author, Title, Year, Place
book, Franco Moretti, "Graphs, Maps and Trees", 2007, London
book, Miguel de Cervantes, El ingenioso hidalgo don Quijote de la Mancha, 1605, Madrid
book, Riccardo Mazza, Introduction to information visualization, 2009, London -->
</section>
<section>
<section data-markdown>
<textarea data-template>
## What is mark-up language?
- To encode, to tag texts;
- To make explicit (to a machine) what is implicit (to a person);
- To add value by supplying multiple annotations.
</textarea>
</section>
<section data-markdown>
<textarea data-template>
## Procedural Markup: HTML
- Visual, typographic, representation;
- WYSWYG: What You See is ALL you Get.
## Descriptive Markup: XML
- Semantic, funcional, structured;
- Meaning before format.
</textarea>
</section>
<section>
<h5><b>Miguel de Cervantes</b> wrote <i>Don Quixote</i></h5>
</br>
<h3>Procedural</h3>
<pre><code><bold>Miguel de Cervantes</bold> wrote <italic>Don Quixote</italic></code></pre>
<h3>Descriptive</h3>
<pre> Markup<code><name>Miguel de Cervantes</name> wrote <title>Don Quixote</title></code></pre>
<pre> Visualization<code>name {font-weight: bold;} title {font-style: italic;} </code></pre>
<pre> Process<code><xsl:for-each select="//name"></code></pre>
</section>
<section>
<h3>XML Golden Rules </h3>
<pre class="xml"> An element consists of a <b>start-tag</b>, optional <b>content</b>, and an <b>end-tag</b>.<code> <persName>Miguel de Cervantes</persName></code></pre>
<pre class="xml"> An element may have <b>attributes</b>, each consisting of a name and a value.<code> <name type="person">Miguel de Cervantes</name></code></pre>
<pre class="xml"> An XML document may contain <b>processing</b> instructions or <b>comments</b>.<code> <? xml-stylesheet type="text/css" href="visualize-tei-xml.css"?></code>
<code><!-- This is a comment: here starts the first sonnet --></code></pre>
<pre class="xml"> Elements and attributes are <b>case sensitive</b>.<code> <name> ≠ <Name></code></pre>
<pre class="xml"> <b>Empty elements</b> can use a minimized tag syntax.<code> <pb/> = <pb></pb> </code></pre>
</section>
<section data-markdown>
<textarea data-template>
## Well-formed (syntax)
- A single root element (first node) contains the XML document:
- ```<ROOT>``` _Everything in here_ ```</ROOT>```
- Each element is nested within the root element in a hierarchical structure: <a href="imagenes/matrioszka_tei.html">no overlapping</a>.
- ✅ ```<ROOT><text>``` [...] ```</text></ROOT>```
- ❌ ```<ROOT><text>``` [...] ```</ROOT></text>```
- ...
</textarea>
</section>
<section data-markdown>
<textarea data-template>
## Valid (grammar)
- Which elements and attributes are used.
- Which elements and attributes can appear where.
- ...
</textarea>
</section>
</section> <!--end terminology-->
<section>
<section id="tei">
<h2>TEI: Text Encoding Initiative</h2>
<div class="imagen-texto">
<img style="box-shadow: none; border: none" src="imagenes/marginalia-tei-logo.jpg"/>
<div class="caption"><a class="fuente" href="http://www.tei-c.org">TEI: Text Encoding Initiative</a></div>
</div>
<ul style="width: 50%; float: right;" >
<span class="cita">"The Text Encoding Initiative (TEI) is a consortium which collectively develops and maintains a standard for the representation of texts in digital form." </span>
<li>Platform independence;</li>
<li>TEI P5: Version 4.3.0. Last updated on 31st August 2021</li>
</ul>
</section> <!--End TEI definition-->
<section data-markdown>
<textarea data-template>
<img style="width: 50%; box-shadow: none; border-bottom: none" src="imagenes/interreg_markup-xml-tei.png"/>
</textarea>
</section>
<section>
<h3>TEI basic structure (root element = <TEI>)</h3>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-1.png"/>
</section>
<section>
<h3>TEI basic structure</h3>
<h5><teiHeader></h5>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-2.png"/>
</section>
<section>
<h3>TEI basic structure</h3>
<h5><teiHeader></h5>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-3.png"/>
</section>
<section data-markdown>
<textarea data-template>
## Content in the `<teiHeader>`
```
<teiHeader>
<fileDesc>
<titleStmt>
<title>Bym złożył sonet, Violente mię prosi</title>
<author>Lope de Vega Carpio</author>
</titleStmt>
<publicationStmt>
<publisher>University of Wrocław</publisher>
<date when="2021-05-17">17/05/2021</date>
</publicationStmt>
<sourceDesc>
<bibl>Sonety hiszpańskie, Jan Winczakiewicz (tłumacz), Londyn, Oficyna Poetów i Malarzy, 1965.</bibl>
</sourceDesc>
</fileDesc>
</teiHeader>
```
</textarea>
</section>
<section>
<h3>TEI basic structure</h3>
<h5><text></h5>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-4.png"/>
</section>
<section>
<h3>TEI basic structure</h3>
<h5><text></h5>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-5.png"/>
</section>
<section>
<h3>TEI basic structure</h3>
<h5><text></h5>
<img style="box-shadow: none; border: none" src="imagenes/editio-tei_basic-6.png"/>
</section>
<section data-markdown>
<textarea data-template>
```
<text>
<body>
<div>
<head>AVERTISSEMENT</head>
<p>Je demande pardon aux lecteurs français d'avoir choisi, parmi le nombreuses pièces de Lope de Vega, celle-ci, où le précepte des trois unités semble avoir été plus scandaleusement violé</p>
</div>
</body>
</text>
```
</textarea>
</section>
<section>
<h3>Classes of elements</h3>
<li>grouped semantically: names, places, titles, ...</li>
<li>grouped structurally: divisions, paragraphs, verses,...</li>
</section>
<section>
<h3>Verse and name annotation</h3>
<pre><code><body>
<lg>
<l><persName>Doris</persName>, qui sait qu'aux vers quelquefois je me plais,</l>
<l>Me demande un sonnet, et je m'en désespère:</l>
<l>Quatorze vers, grand Dieu! Le moyen de les faire?</l>
<l>En voilà cependant déjà quatre de faits.</l>
</lg>
</body>
</code></pre>
</section>
<section>
<h3>Atributtes inside of elements</h3>
<div style="font-size: 1.2em;"><pre> Provides a unique identifier for any element:<code> @xml:id </code></pre>
<pre> Provides a name or number for any element:<code> @n </code></pre>
<pre> Specifies the language of any element:<code> @xml:lang </code></pre>
<pre> Characterizes the element in some sense:<code> @type </code></pre>
<pre> Specifies the visual appearance (rendition):<code> @rend, @style, @rendition </code></pre></div>
</section>
<section>
<h3>Atributtes and elements</h3>
<pre><code><body>
<lg type="quatrain">
<l n="1">Doris, qui ſait qu'aux vers quelquefois je me plais,</l>
<l n="2">Me demande un Sonnet; & je m'en deſeſpere:</l>
<l n="3">Quatorze vers, grand Dieu! le moyen de les faire!</l>
<l n="4">En voilà cependant desja quatre de faits.</l>
</lg>
</body>
</code></pre>
</section>
<section>
<h3>Metatextual markup for editions</h3>
<h5>Enriched with corrections, regularizations, expansions</h5>
<div style="font-size: 1.2em;"><pre class="xml" style="text-align:center ;"> Groups alternative encodings: <code> <choice> </code></pre>
<pre class="xml"> Apparent error:<code> <sic> </code></pre>
<pre class="xml"> Corrected error: <code> <corr> </code></pre>
<pre class="xml"> Original form: <code> <orig> </code></pre>
<pre class="xml"> Regularized form: <code> <reg> </code></pre></div>
</section>
<section>
<h3>Markup for corrections</h3>
<pre><code data-line-numbers="7-10"><body>
<lg type="quatrain">
<l n="1">Doris, qui ſait qu'aux vers quelquefois je me plais,</l>
<l n="3">Me demande un Sonnet; & je m'en deſeſpere:</l>
<l n="4">Quatorze vers, grand Dieu! le moyen de les faire!</l>
<l n="5">En voilà cependant
<choice>
<orig>desja</orig>
<reg>déjà</reg>
</choice>
quatre de faits.</l>
</lg>
</body></code></pre>
</section>
<section>
<h3>Critical Apparatus, Dictionaries, Manuscript Description, Bibliographies, ...</h3>
<h5>nearly 500 elements </h5>
</section>
<section id="guidelines">
<h3><a href="http://www.tei-c.org/release/doc/tei-p5-doc/en/html/index.html" target="_blank">Guidelines</a></h3>
<img src="imagenes/editio-tei-guidelines-1.png"/>
</section>
</section> <!--End TEI structure-->
<section>
<section data-markdown>
<textarea data-template>
## file.xml -> core of a edition
```{html}
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<!-- 👆 these are the processing instructions -->
<!-- 👇 Here starts the TEI structure, with the <TEI> element, so called root element -->
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader> <!-- 👈 where the metadata goes -->
<fileDesc>
<titleStmt>
<title>Empty XML File</title>
</titleStmt>
<publicationStmt>
<p>Information about the publication</p>
</publicationStmt>
<sourceDesc>
<p>Information about the source</p>
</sourceDesc>
</fileDesc>
</teiHeader>
<text> <!-- 👈 where the actual text goes -->
<body>
<p>Some text here.</p>
</body>
</text>
</TEI>
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
## Catalogue of Digital Editions
<a style="box-shadow: none; border-bottom: none" href="https://dig-ed-cat.acdh.oeaw.ac.at" target="_blank"><img style="width: 80%" src="http://phc.uni.wroc.pl/interreg/w/losada/images/catalog_schopenhauer.gif"/></a>
</textarea>
</section>
<section data-markdown>
<textarea data-template>
## Beyond editions
<a style="box-shadow: none; border-bottom: none" href="https://dracor.org" target="_blank"><img style="width: 70%" src="imagenes/dracor_calderon.png"/></a>
</textarea>
</section>
<section data-markdown>
<textarea data-template>
## Beyond editions
- Maps, computational analysis, etc.
</textarea>
</section>
</section>
<section><section data-markdown> <!--Start TEI structure-->
<textarea data-template>
## [Exercise](https://github.com/editio/interreg)
<img style="width: 85%; box-shadow: none; border-bottom: none" src="imagenes/interreg_1.0-Lope-Soneto-scan-PL-1965.png"/>
</textarea>
</section>
<section data-markdown>
<textarea data-template>
```XML
Bym złożył sonet, Violente mię prosi;
nierazem znoił w takowym rygorze:
czternaście wierszów sonet pojąć może.
Trzy z przodka fraszka ze śmiechem unosi.
Trapiąc się, jaki rym tutaj położę,
do drugiej strofy dobiegam w rozpędzie.
Niech mi tercyna z odsieczą przybędzie,
a oną strofą nic się nie zatrwożę.
W pierwszą tercynę wchodzę i chociażem
za próg przełożył, zda się, jedną nogę,
już tę tercynę gładko zamknąć mogę.
Drugiej dostawszy, z jednakim kurażem
- chocia naprzeciw wiersz trzynasty bieży -
czternasty-m skroił! Licz kto mi nie wierzy!
```
<span class="fuente">
<i>Sonety hiszpańskie</i>, Jan Winczakiewicz (tłumacz), Londyn, Oficyna Poetów i Malarzy, 1965.</span>
</textarea>
</section>
<section data-markdown>
<textarea data-template>
```
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-stylesheet type="text/css" href="visualize-tei-xml.css"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Bym złożył sonet, Violente mię prosi</title>
<author>Lope de Vega Carpio</author>
<editor>José Luis Losada</editor>
</titleStmt>
<publicationStmt>
<publisher>University of Wrocław</publisher>
<date>17/05/2021</date>
</publicationStmt>
<sourceDesc>
<bibl>
<title>Sonety hiszpańskie</title>
<editor role="tłumacz">Jan Winczakiewicz</editor>
<pubPlace>Londyn</pubPlace>
<publisher>Oficyna Poetów i Malarzy</publisher>
<date>1965</date>
</bibl>
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
<body>
<lg type="soneto">
<lg type="cuarteto">
<l n="1"><hi rend="bold">B</hi>ym złożył sonet, <choice>
<sic>Violente</sic>
<corr>Violante</corr>
</choice> mię prosi;</l>
<l n="2">nierazem znoił w takowym rygorze:</l>
<l n="3">czternaście wierszów sonet pojąć może.</l>
<l n="4">Trzy z przodka fraszka ze śmiechem unosi.</l>
</lg>
<lg type="cuarteto">
<l n="5">Trapiąc się, jaki rym tutaj położę,</l>
<l n="6">do drugiej strofy dobiegam w rozpędzie.</l>
<l n="7">Niech mi tercyna z odsieczą przybędzie,</l>
<l n="8">a oną strofą nic się nie zatrwożę.</l>
</lg>
<lg type="terceto">
<l n="9">W pierwszą tercynę wchodzę i chociażem</l>
<l n="10">za próg przełożył, zda się, jedną nogę,</l>
<l n="11">już tę tercynę gładko zamknąć mogę.</l>
</lg>
<lg type="terceto">
<l n="12">Drugiej dostawszy, z jednakim kurażem</l>
<l n="13">– chocia naprzeciw wiersz trzynasty bieży –</l>
<l n="14">czternasty-m skroił! Licz kto mi nie wierzy!</l>
</lg>
</lg>
</body>
</text>
</TEI>
```
</textarea>
</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 4.2.2. </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>Terras, Melissa M., Julianne Nyhan, and Edward Vanhoutte, eds. 2013. <i>Defining Digital Humanities: A Reader</i>. Farnham, Surrey, England : Burlington, VT: Ashgate Publishing Company.
</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>Markup, XML, TEI</i>, <a href="http://editio.github.io/presentations/interreg_workshop.html"><http://editio.github.io/presentations/interreg_workshop.html></a>, 2021.</div>
<h2 id="filete"><a style="box-shadow: none; border: none" href="http://editio.github.io/presentations/interreg_workshop.html?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 style="box-shadow: none; border: none" 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: true, 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 · 2021</p>
</div> <!--FIN FOOTER FIRMA-->
<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>