-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreferences.html
1776 lines (1371 loc) · 160 KB
/
references.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
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
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML><html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Genre Analysis and Corpus Design: Nineteenth-Century Spanish-American Novels (1830–1910)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/w3-theme-blue-grey.css">
<link rel="stylesheet" href="css/w3-colors-signal.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<style>
html {
scroll-padding-top: 118px;
}
html,body {font-size: 20px;}
html,body,h1,h2,h3,h4,h5,h6 {font-family: "Times New Roman", serif;}
h1 {font-size: 32px;}
h2 {font-size: 30px;}
h3, h4, h5 {font-size: 28px;}
.header-image {
position: absolute;
left: 0;
top: 0;
z-index: -1;
}
.custom-logo {
position: absolute;
top: 20px;
left: 7px;
}
#toc a {
text-decoration: none;
}
sup.w3-btn {
font-size: small;
padding: 7px 5px;
}
.w3-top a {
text-decoration: none;
}
.w3-sidebar {
z-index: 3;
width: 450px;
top: 86px;
bottom: 0;
height: inherit;
}
.w3-sidebar button.w3-button {
white-space: normal;
}
.w3-sidebar.w3-bar-block .w3-bar-item {
/*line-height: 1.0;*/
padding-right: 20px;
}
.w3-sidebar .w3-bar {
margin-top: 20px;
margin-bottom: 20px;
}
.w3-tooltip .w3-text {
line-height: 1.0;
min-width: 300px;
}
.paracount a {
display: inline-block;
padding: 0px 5px;
text-decoration: none;
font-size: 0.8em;
font-weight: bold;
}
.w3-responsive .w3-table {
width: auto;
max-width: 100%;
margin: 0 auto 0 auto;
}
table.w3-border, table.w3-border th, table.w3-border td {
border: 1px solid #ccc;
border-collapse: collapse;
border-spacing: 0px;
}
table.center th, table.center td {
text-align: center;
}
table th, table td {
font-size: 0.9em;
}
table th {
background-color: #dddddd;
}
caption {
margin-top: 5px;
}
blockquote {
font-size: 0.95em;
}
code {
font-size: 0.8em;
}
figure.code {
overflow: scroll;
}
figure.code pre {
padding: 10px;
border: 1px solid grey;
margin-bottom: 0px;
overflow: scroll;
}
figcaption {
font-size: 0.9em;
text-align: center;
}
</style>
</head>
<body>
<div class="w3-top">
<div class="w3-bar w3-theme w3-top w3-center w3-large"><a class="w3-bar-item w3-button w3-right w3-hide-large w3-hover-white w3-large w3-theme-l1" href="javascript:void(0)" onclick="w3_open()"><i class="fa fa-bars"></i></a><img src="img/side.jpg" class="header-image" alt="Institut für Dokumentologie und Editorik" width="100%" height="15"><h1 class="w3-center" style="margin-top: 27px; padding-left: 175px; font-size:calc(8pt + 1.2vw);"><a href="index.html">Genre Analysis and Corpus Design: Nineteenth-Century Spanish-American Novels (1830–1910)</a></h1><a href="https://www.i-d-e.de/"><img src="img/ide-logo.png" class="custom-logo w3-image" alt="Institut für Dokumentologie und Editorik" style="width:172px;height:auto;"></a></div>
</div>
<nav class="w3-sidebar w3-padding-32 w3-bar-block w3-collapse w3-large w3-theme-l5 w3-animate-left" id="mySidebar"><a href="javascript:void(0)" onclick="w3_close()" class="w3-right w3-xlarge w3-padding-large w3-hover-black w3-hide-large" title="Close Menu"><i class="fa fa-remove"></i></a><a class="w3-bar-item w3-button w3-hover-blue-grey " href="index.html">Home</a><a class="w3-bar-item w3-button w3-hover-blue-grey " href="acknowledgements.html">Acknowledgements</a><button class="w3-button w3-block w3-left-align w3-hover-blue-grey " onclick="myAccFunc('menuAcc1')">Summary <i class="fa fa-caret-down w3-padding-small"></i></button><div id="menuAcc1" class="w3-bar-block w3-hide w3-white w3-card-4"><a href="summary.html#Summary" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Summary</a><a href="summary.html#Resumen" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Resumen</a><a href="summary.html#Zusammenfassung" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Zusammenfassung</a></div><a class="w3-bar-item w3-button w3-hover-blue-grey " href="toc.html">Table of Contents</a><div class="w3-bar w3-border w3-dark-grey"></div><a id="menuch1" class="w3-bar-item w3-button w3-hover-blue-grey " href="ch1.html#ch1">1 Introduction</a><span id="menuch2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align "><a href="ch2.html#ch2" style="text-decoration: none;">2 Concepts</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2')"></i></span><div id="menuAccch2" class="w3-bar-block w3-hide w3-white w3-card-4 "><span id="menuch2.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.1" style="text-decoration: none;">2.1 Literary Genres</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.1')"></i></span><div id="menuAccch2.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.1">2.1.1 Disciplinary Locations of Genre Studies</a><span id="menuch2.1.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.1.2" style="text-decoration: none;">2.1.2 Ontological Status and Relevance of Genres</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.1.2')"></i></span><div id="menuAccch2.1.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.1.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.2.1">2.1.2.1 Semiotic Models of Genres</a><a id="menuch2.1.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.2.2">2.1.2.2 Genres and Digital Genre Stylistics: The Roles of Corpora, Genre Labels,
Features, and Text Style</a></div><span id="menuch2.1.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.1.3" style="text-decoration: none;">2.1.3 System and History</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.1.3')"></i></span><div id="menuAccch2.1.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.1.3.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.3.1">2.1.3.1 A Conceptual Proposal for Digital Genre Stylistics: Literary Text Types,
Conventional Literary Genres, and Textual Literary Genres</a><a id="menuch2.1.3.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.3.2">2.1.3.2 Text Types, Conventional Genres, and Textual Genres in Semiotic Models of
Generic Terms</a><a id="menuch2.1.3.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.3.3">2.1.3.3 Literary Currents, Schools, and Movements</a><a id="menuch2.1.3.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.3.4">2.1.3.4 Genre Systems and Hierarchies</a><a id="menuch2.1.3.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.3.5">2.1.3.5 Genre Identity and Variability</a></div><span id="menuch2.1.4" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.1.4" style="text-decoration: none;">2.1.4 Categorization</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.1.4')"></i></span><div id="menuAccch2.1.4" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.1.4.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.4.1">2.1.4.1 Logical Classes</a><a id="menuch2.1.4.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.4.2">2.1.4.2 Prototype Categories</a><a id="menuch2.1.4.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.1.4.3">2.1.4.3 Family Resemblance Networks</a></div>
</div><a id="menuch2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.2">2.2 Style</a><span id="menuch2.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.3" style="text-decoration: none;">2.3 Subgenres of the Nineteenth-Century Spanish-American Novel</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.3')"></i></span><div id="menuAccch2.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><span id="menuch2.3.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.3.1" style="text-decoration: none;">2.3.1 Thematic Subgenres</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.3.1')"></i></span><div id="menuAccch2.3.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.3.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.1.1">2.3.1.1 <em>Novela histórica</em></a><a id="menuch2.3.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.1.2">2.3.1.2 <em>Novela de costumbres</em></a><a id="menuch2.3.1.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.1.3">2.3.1.3 <em>Novela sentimental</em></a></div><span id="menuch2.3.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch2.html#ch2.3.2" style="text-decoration: none;">2.3.2 Subgenres Related to Literary Currents</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch2.3.2')"></i></span><div id="menuAccch2.3.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch2.3.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.2.1">2.3.2.1 <em>Novela romántica</em></a><a id="menuch2.3.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.2.2">2.3.2.2 <em>Novela realista</em></a><a id="menuch2.3.2.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch2.html#ch2.3.2.3">2.3.2.3 <em>Novela naturalista</em></a></div>
</div>
</div><span id="menuch3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align "><a href="ch3.html#ch3" style="text-decoration: none;">3 Corpus</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3')"></i></span><div id="menuAccch3" class="w3-bar-block w3-hide w3-white w3-card-4 "><span id="menuch3.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.1" style="text-decoration: none;">3.1 Selection Criteria</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.1')"></i></span><div id="menuAccch3.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><span id="menuch3.1.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.1.1" style="text-decoration: none;">3.1.1 Boundaries of the Novel</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.1.1')"></i></span><div id="menuAccch3.1.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.1.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.1">3.1.1.1 Fictionality</a><a id="menuch3.1.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.2">3.1.1.2 Narrativity</a><a id="menuch3.1.1.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.3">3.1.1.3 Prose</a><a id="menuch3.1.1.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.4">3.1.1.4 Length</a><a id="menuch3.1.1.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.5">3.1.1.5 Independent Publication</a><a id="menuch3.1.1.6" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.6">3.1.1.6 Additional Criteria</a><a id="menuch3.1.1.7" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.1.7">3.1.1.7 A Working Definition of the Novel</a></div><a id="menuch3.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.2">3.1.2 Borders of Argentina, Cuba, and Mexico</a><a id="menuch3.1.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.1.3">3.1.3 Limits of the Nineteenth Century</a></div><span id="menuch3.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.2" style="text-decoration: none;">3.2 Bibliographical Database</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.2')"></i></span><div id="menuAccch3.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.1">3.2.1 Sources</a><a id="menuch3.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.2">3.2.2 Data Model and Text Encoding</a><span id="menuch3.2.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.2.3" style="text-decoration: none;">3.2.3 Assignment of Subgenre Labels</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.2.3')"></i></span><div id="menuAccch3.2.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.2.3.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.1">3.2.3.1 An Example</a><a id="menuch3.2.3.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.2">3.2.3.2 Levels of Subgenre Terms</a><a id="menuch3.2.3.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.3">3.2.3.3 Explicit and Implicit Subgenre Signals</a><a id="menuch3.2.3.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.4">3.2.3.4 Interpretive Subgenre Labels</a><a id="menuch3.2.3.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.5">3.2.3.5 Literary-Historical Subgenre Labels</a><a id="menuch3.2.3.6" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.2.3.6">3.2.3.6 A Discursive Model of Generic Terms</a></div>
</div><span id="menuch3.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.3" style="text-decoration: none;">3.3 Text Corpus</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.3')"></i></span><div id="menuAccch3.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.3.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.1">3.3.1 Selection of Novels and Sources</a><a id="menuch3.3.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.2">3.3.2 Text Treatment</a><span id="menuch3.3.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.3.3" style="text-decoration: none;">3.3.3 Metadata and Text Encoding</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.3.3')"></i></span><div id="menuAccch3.3.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><span id="menuch3.3.3.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.3.3.1" style="text-decoration: none;">3.3.3.1 TEI Header</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.3.3.1')"></i></span><div id="menuAccch3.3.3.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.3.3.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.1">3.3.3.1.1 Title and Publication Statements</a><a id="menuch3.3.3.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.2">3.3.3.1.2 Declaration of Rights</a><a id="menuch3.3.3.1.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.3">3.3.3.1.3 Source Description</a><a id="menuch3.3.3.1.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.4">3.3.3.1.4 Encoding Description</a><a id="menuch3.3.3.1.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.5">3.3.3.1.5 Abstracts</a><a id="menuch3.3.3.1.6" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.6">3.3.3.1.6 Text Classification with Keywords</a><a id="menuch3.3.3.1.7" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.1.7">3.3.3.1.7 Revision Description</a></div><span id="menuch3.3.3.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch3.html#ch3.3.3.2" style="text-decoration: none;">3.3.3.2 TEI Body</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch3.3.3.2')"></i></span><div id="menuAccch3.3.3.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch3.3.3.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.1">3.3.3.2.1 Typographically Marked Subdivisions of the Text</a><a id="menuch3.3.3.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.2">3.3.3.2.2 Typographically Highlighted Words or Phrases</a><a id="menuch3.3.3.2.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.3">3.3.3.2.3 Gaps</a><a id="menuch3.3.3.2.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.4">3.3.3.2.4 Verse Lines</a><a id="menuch3.3.3.2.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.5">3.3.3.2.5 Dramatic Text</a><a id="menuch3.3.3.2.6" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.6">3.3.3.2.6 Representations of Written Text</a><a id="menuch3.3.3.2.7" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.7">3.3.3.2.7 Quotations</a><a id="menuch3.3.3.2.8" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.8">3.3.3.2.8 Direct Speech and Thought</a><a id="menuch3.3.3.2.9" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.2.9">3.3.3.2.9 Embedded Texts</a></div><a id="menuch3.3.3.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.3.3">3.3.3.3 TEI Schema</a></div><a id="menuch3.3.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.4">3.3.4 Assignment of Subgenre Labels</a><a id="menuch3.3.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch3.html#ch3.3.5">3.3.5 Derivative Formats and Publication</a></div>
</div><span id="menuch4" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align "><a href="ch4.html#ch4" style="text-decoration: none;">4 Analysis</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4')"></i></span><div id="menuAccch4" class="w3-bar-block w3-hide w3-white w3-card-4 "><span id="menuch4.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.1" style="text-decoration: none;">4.1 Metadata Analysis</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.1')"></i></span><div id="menuAccch4.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.1">4.1.1 On Representativeness</a><a id="menuch4.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.2">4.1.2 Authors</a><span id="menuch4.1.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.1.3" style="text-decoration: none;">4.1.3 Works</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.1.3')"></i></span><div id="menuAccch4.1.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.1.3.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.3.1">4.1.3.1 Comparison of Bib-ACMé and Conha19</a><a id="menuch4.1.3.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.3.2">4.1.3.2 Corpus-specific Overviews</a></div><a id="menuch4.1.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.4">4.1.4 Editions</a><span id="menuch4.1.5" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.1.5" style="text-decoration: none;">4.1.5 Subgenres</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.1.5')"></i></span><div id="menuAccch4.1.5" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.1.5.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.1">4.1.5.1 Explicit Signals, Implicit Signals, and Literary-Historical Labels</a><span id="menuch4.1.5.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.1.5.2" style="text-decoration: none;">4.1.5.2 Discursive Levels of Subgenre Labels</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.1.5.2')"></i></span><div id="menuAccch4.1.5.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.1.5.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.1">4.1.5.2.1 Theme</a><a id="menuch4.1.5.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.2">4.1.5.2.2 Literary Currents</a><a id="menuch4.1.5.2.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.3">4.1.5.2.3 Mode of Representation</a><a id="menuch4.1.5.2.4" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.4">4.1.5.2.4 Mode of Reality</a><a id="menuch4.1.5.2.5" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.5">4.1.5.2.5 Identity</a><a id="menuch4.1.5.2.6" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.6">4.1.5.2.6 Medium</a><a id="menuch4.1.5.2.7" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.7">4.1.5.2.7 Attitude</a><a id="menuch4.1.5.2.8" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.2.8">4.1.5.2.8 Intention</a></div><span id="menuch4.1.5.3" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.1.5.3" style="text-decoration: none;">4.1.5.3 Subgenre Labels Selected for Text Analysis</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.1.5.3')"></i></span><div id="menuAccch4.1.5.3" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.1.5.3.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.3.1">4.1.5.3.1 Primary Thematic Labels</a><a id="menuch4.1.5.3.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.1.5.3.2">4.1.5.3.2 Primary Literary Currents</a></div>
</div>
</div><span id="menuch4.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.2" style="text-decoration: none;">4.2 Text Analysis</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.2')"></i></span><div id="menuAccch4.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><span id="menuch4.2.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.2.1" style="text-decoration: none;">4.2.1 Features</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.2.1')"></i></span><div id="menuAccch4.2.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.2.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.1.1">4.2.1.1 General Features: MFW</a><a id="menuch4.2.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.1.2">4.2.1.2 Semantic Features: Topics</a></div><span id="menuch4.2.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.2.2" style="text-decoration: none;">4.2.2 Categorization</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.2.2')"></i></span><div id="menuAccch4.2.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><span id="menuch4.2.2.1" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.2.2.1" style="text-decoration: none;">4.2.2.1 Classification</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.2.2.1')"></i></span><div id="menuAccch4.2.2.1" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.2.2.1.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.2.1.1">4.2.2.1.1 Thematic Subgenres</a><a id="menuch4.2.2.1.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.2.1.2">4.2.2.1.2 Literary Currents</a></div><span id="menuch4.2.2.2" class="w3-hover-blue-grey w3-button w3-bar-item w3-block w3-left-align w3-margin-left"><a href="ch4.html#ch4.2.2.2" style="text-decoration: none;">4.2.2.2 Family Resemblance: Network Analysis</a><i class="fa fa-caret-down w3-padding-small" style="z-index: 10;" onclick="myAccFunc('menuAccch4.2.2.2')"></i></span><div id="menuAccch4.2.2.2" class="w3-bar-block w3-hide w3-white w3-card-4 w3-margin-left"><a id="menuch4.2.2.2.1" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.2.2.1">4.2.2.2.1 Method</a><a id="menuch4.2.2.2.2" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.2.2.2">4.2.2.2.2 Data</a><a id="menuch4.2.2.2.3" class="w3-bar-item w3-button w3-hover-blue-grey w3-margin-left" href="ch4.html#ch4.2.2.2.3">4.2.2.2.3 Results</a></div>
</div>
</div>
</div><a id="menuch5" class="w3-bar-item w3-button w3-hover-blue-grey " href="ch5.html#ch5">5 Conclusion</a><div class="w3-bar w3-border w3-dark-grey"></div><a class="w3-bar-item w3-button w3-hover-blue-grey " href="notes.html">Notes</a><a class="w3-bar-item w3-button w3-hover-blue-grey w3-blue-grey" href="references.html">References</a><button class="w3-button w3-block w3-left-align w3-hover-blue-grey" onclick="myAccFunc('menuAcc3')">Appendix <i class="fa fa-caret-down w3-padding-small"></i></button><div id="menuAcc3" class="w3-bar-block w3-hide w3-white w3-card-4 "><a class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey " href="corpus-sources.html">Sources of the Novels in the Corpus</a><a class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey " href="appendix-figures.html">Appendix of Figures</a><a class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey " href="index-figures.html">Index of Figures</a><a class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey " href="index-tables.html">Index of Tables</a><a class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey " href="index-examples.html">Index of Examples</a></div><button class="w3-button w3-hover-blue-grey w3-block w3-left-align" onclick="myAccFunc('menuAcc2')">Data and Scripts <i class="fa fa-caret-down w3-padding-small"></i></button><div id="menuAcc2" class="w3-bar-block w3-hide w3-white w3-card-4"><a href="https://github.com/cligs/bibacme" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Bibliography (Bib-ACMé)</a><a href="https://github.com/cligs/conha19" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Corpus (Conha19)</a><a href="https://github.com/cligs/scripts-nh/" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Analysis Scripts (Scripts-nh)</a><a href="https://github.com/cligs/data-nh/" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">Analysis Data (Data-nh)</a><a href="tei/Henny-Krahmer_2023_Genre-Analysis-Corpus-Design.xml" class="w3-bar-item w3-button w3-margin-left w3-hover-blue-grey">TEI (Dissertation)</a></div>
</nav>
<div class="w3-overlay w3-hide-large" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
<div class="w3-main" style="margin-left:450px;margin-top:85px;">
<div class="w3-row w3-padding-32">
<div class="w3-col" style="width: 7%;"> </div>
<div class="w3-col l8 m10 s10" id="References">
<h1>References</h1>
<p>Adamzik, Kirsten, ed. 2001. <em>Kontrastive Textologie:
Untersuchungen zur deutschen und französischen Sprach- und
Literaturwissenschaft.</em> Tübingen: Stauffenburg-Verlag.</p>
<p>AG Digital Humanities Theorie. 2023. Digital
Humanities Theorie. Theorie und Theoriebildung in den digitalen
Geisteswissenschaften. <a href="https://web.archive.org/web/20230208165032/https://dhtheorien.hypotheses.org/">https://web.archive.org/web/20230208165032/https://dhtheorien.hypotheses.org/</a>.</p>
<p>Álamo Felices, Francisco. 2011. <em>Los
subgéneros novelescos. Teoría y modalidades narrativas.</em> Almería:
Universidad Almería.</p>
<p>Alburquerque-García, Luis. 2015. “Poética de
la literatura de viaje.” In <em>Cartografía de la literatura de viaje en
Hispanoamérica</em>, edited by Daniar Chávez and Marco Urdapilleta, 19–34.
México: Universidad Autónoma del Estado de México.</p>
<p>Alegría, Fernando. 1959. <em>Breve historia de la
novela hispanoamericana.</em> México: Ed. de Andrea.</p>
<p>Alpaydin, Ethem. 2016. <em>Machine Learning: The New
AI.</em> Cambridge, Mass.: The MIT Press.</p>
<p>Altamirano, Ignacio Manuel. 1868. <em>Revistas
literarias de México.</em> México: T. F. Neve.</p>
<p>Anderson Imbert, Enrique. 1954. <em>Historia de
la literatura hispanoamericana.</em> México: Fondo de Cultura
Económica.</p>
<p>Anderson Imbert, Enrique. 1995. <em>Historia de
la literatura hispanoamericana.</em> Vol. 1: La colonia. Cien años de
república. 2nd ed. México: Fondo de Cultura Económica.</p>
<p>Andresen, Melanie, and Heike Zinsmeister.
2019. <em>Korpuslinguistik.</em> Tübingen: Narr Francke Attempto.</p>
<p>Anz, Thomas. 2007. “Inhaltsanalyse.” In <em>Handbuch
Literaturwissenschaft. Gegenstände – Konzepte – Institutionen</em>, edited by
Thomas Anz, vol. 2, <em>Methoden und Theorien</em>, 55–69. Stuttgart, Weimar:
J.B. Metzler.</p>
<p>Ardao, Arturo. 1980. <em>Genesis de la idea y el nombre
de América Latina.</em> Caracas: Centro de Estudios Latinoamericanos Rómulo
Gallegos.</p>
<p>Armas, Emilio de. 1997. “Cuba. 19th- and 20th-Century Prose
and Poetry.” In <em>Encyclopedia of Latin American Literature</em>, edited by
Verity Smith, 235–242. London/Chicago: Fitzroy Dearborn Publishers.</p>
<p>Arora, Sanjeev, Rong Ge, and Ankur Moitra. 2012.
“Learning Topic Models – Going beyond SVD.” In <em>Proceedings of the 2012 IEEE
53rd Annual Symposium on Foundations of Computer Science</em>, 1–10.
Washington D.C.: IEEE Computer Society. <a href="https://doi.ieeecomputersociety.org/10.1109/FOCS.2012.49">https://doi.ieeecomputersociety.org/10.1109/FOCS.2012.49</a>.</p>
<p>Avellaneda, Gertrudis Gómez de. (1871) 2008.
<em>La Baronesa de Joux: leyenda fundada en una tradición francesa (en
formato HTML).</em> Alicante: Biblioteca Virtual Miguel de Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmcng4q2 ">https://www.cervantesvirtual.com/nd/ark:/59851/bmcng4q2 </a>.</p>
<p>Barth, Florian, and Gabriel Viehhauser. 2017.
“Digitale Modellierung literarischen Raums.” In <em>DHd2017.
Konferenzabstracts.</em>
<a href="https://doi.org/10.5281/zenodo.4622732">https://doi.org/10.5281/zenodo.4622732</a>.</p>
<p>Barthes, Roland. (1953) 2002. <em>Le Degré zero de
l’écriture.</em> Reprint, Paris: Seuil.</p>
<p>Bawarshi, Anis S., and Mary Jo Reiff. 2010.
<em>Genre: An Introduction to History, Theory, Research, and Pedagogy.</em>
West Lafayette: Parlor Press and the WAC Clearinghouse. <a href="https://web.archive.org/web/20230210055352/https://wac.colostate.edu/docs/books/bawarshi_reiff/genre.pdf">https://web.archive.org/web/20230210055352/https://wac.colostate.edu/docs/books/bawarshi_reiff/genre.pdf</a>.</p>
<p>Behnel, Stefan. 2022. “Validation with lxml.” lxml – XML
and HTML with Python. <a href="https://web.archive.org/web/20230611112928/https://lxml.de/validation.html">https://web.archive.org/web/20230611112928/https://lxml.de/validation.html</a>.</p>
<p>Behrens, Irene. 1940. <em>Die Lehre von der Einteilung
der Dichtkunst. Vornehmlich vom 16. bis 19. Jahrhundert.</em> Halle/Saale:
Max Niemeyer Verlag.</p>
<p>Bei, Yu. 2008. “An Evaluation of Text Classification Methods
for Literary Study.” <em>Literary and Linguistic Computing</em> 23: 327–343.
<a href="https://doi.org/10.1093/llc/fqn015">https://doi.org/10.1093/llc/fqn015</a>.</p>
<p>Berlin-Brandenburgische Akademie der Wissenschaften, ed.
2022. “Deutsches Textarchiv. Grundlage für ein Referenzkorpus der neuhochdeutschen
Sprache.” DTA. Accessed November 6, 2022. <a href="https://web.archive.org/web/20221106163539/https://www.deutschestextarchiv.de/">https://web.archive.org/web/20221106163539/https://www.deutschestextarchiv.de/</a>.</p>
<p>Bernecker, Walter L., ed. 1992. <em>Handbuch der
Geschichte Lateinamerikas.</em> Vol. 2: Lateinamerika von 1760 bis 1900.
Stuttgart: Klett-Cotta.</p>
<p>Betz, Katrin, Ulrike Henny-Krahmer, Christian Pölitz,
Christof Schöch, and Albin Zehe. 2017. “The ‘topic modeling workflow (tmw)’.” Talk
presented at the workshop ‘Let’s Develop an Infrastructure for Historical Research
Tools’ at the conference DH2017, Montreal, Canada. Accessed November 14, 2020.
<a href="https://christofs.github.io/tmw-dh/#/">https://christofs.github.io/tmw-dh/#/</a>.</p>
<p>Biber, Douglas. 1992. “The multi-dimensional approach to
linguistic analyses of genre variation: An overview of methodology and findings.”
<em>Computers and the Humanities</em> 26 (5–6): 331–345. <a href="https://doi.org/10.1007/BF00136979">https://doi.org/10.1007/BF00136979</a>.</p>
<p>Biber, Douglas. 1993a. “Representativeness in Corpus
Design.” <em>Literary and Linguistic Computing</em> 8 (4): 243–257. <a href="https://web.archive.org/web/20230128095417/http://otipl.philol.msu.ru/media/biber930.pdf">https://web.archive.org/web/20230128095417/http://otipl.philol.msu.ru/media/biber930.pdf</a>.</p>
<p>Biber, Douglas. 1993b. “The Multi-Dimensional Approach to
Linguistic Analyses of Genre Variation: An Overview of Methodology and Findings.”
<em>Computers in the Humanities</em> 26 (5–6): 331–345. <a href="https://doi.org/10.1007/BF00136979">https://doi.org/10.1007/BF00136979</a>.</p>
<p>Biblioteca Nacional de Cuba José Martí.
2011. “Bibliografía Nacional Cubana.” <a href="https://web.archive.org/web/20190702105833/http://bdigital.bnjm.cu/?secc=bibliografias">https://web.archive.org/web/20190702105833/http://bdigital.bnjm.cu/?secc=bibliografias</a>.</p>
<p>Biblioteca Nacional de España. 2023. “Biblioteca Digital
Hispánica.” <a href="https://web.archive.org/web/20230603173847/http://bdh.bne.es/bnesearch/Inicio.do">https://web.archive.org/web/20230603173847/http://bdh.bne.es/bnesearch/Inicio.do</a>.</p>
<p>Binongo, José Nilo G., and M. W. A. Smith. 1999. “A
Bridge Between Statistics and Literature: The Graphs of Oscar Wilde’s Literary
Genres.” <em>Journal of Applied Statistics</em> 26 (7): 781–787. <a href="https://doi.org/10.1080/02664769922025">https://doi.org/10.1080/02664769922025</a>.</p>
<p>Blei, David M. 2012. “Probabilistic Topic Models.”
<em>Communications of the ACM</em> 55 (4): 77–84. <a href="https://doi.org/10.1145/2133806.2133826">https://doi.org/10.1145/2133806.2133826</a>.</p>
<p>Blei, David M., and John D. Lafferty. 2006.
“Dynamic topic models.” In <em>Proceedings of the 23rd International conference
on Machine learning (ICML)</em>, 113–120. <a href="https://doi.org/10.1145/1143844.1143859">https://doi.org/10.1145/1143844.1143859</a>.</p>
<p>Blei, David M., Andrew Y. Ng, and Michael I.
Jordan. 2003. “Latent dirichlet allocation.” <em>Journal of Machine Learning
Research</em> 3: 993–1022. <a href="https://web.archive.org/web/20230310095853/https://dl.acm.org/doi/pdf/10.5555/944919.944937">https://web.archive.org/web/20230310095853/https://dl.acm.org/doi/pdf/10.5555/944919.944937</a>.</p>
<p>Blondel, Vincent D., Jean-Loup Guillaume, Renaud
Lambiotte, and Etienne Lefebvre. 2008. “Fast unfolding of communities in large
networks.” <em>Journal of Statistical Mechanics: Theory and Experiment</em>
10: 155–168. <a href="https://10.1088/1742-5468/2008/10/P10008">https://10.1088/1742-5468/2008/10/P10008</a>.</p>
<p>Bonheim, Helmut. 1992. “The Cladistic Method of
Classifying Genres.” <em>Yearbook of Research in English and American Literature
(REAL)</em> 8: 1–32.</p>
<p>Botrel, Jean-François. 2001. “La novela, género editorial
(España, 1830–1930).” In <em>La novela en España en los siglos XIX y XX.
Historia, sociedad, búsqueda identitaria</em>, edited by Paul Aubert, 35–51.
Madrid: Casa de Velázquez. <a href="https://web.archive.org/web/20230606180953/https://books.openedition.org/cvz/2631">https://web.archive.org/web/20230606180953/https://books.openedition.org/cvz/2631</a>.</p>
<p>Branco, Paula, Luís Torgo, and Rita P.
Ribeiro. 2015. “A Survey of Predictive Modelling under Imbalanced Distributions.”
<em>ACM Computing Surveys</em> 49 (2): 1–50. <a href="https://doi.org/10.1145/2907070">https://doi.org/10.1145/2907070</a>.</p>
<p>Brinker, Klaus. 1992. <em>Textlinguistik.</em>
Heidelberg: Groos.</p>
<p>Brinker, Klaus, Hermann Cölfen, and Steffen
Pappert. 2014. <em>Linguististische Textanalyse. Eine Einführung in
Grundbegriffe und Methoden.</em> 8th ed. Berlin: Erich Schmidt Verlag.</p>
<p>Brunner, Annelen. 2013. “Automatic recognition of speech,
thought, and writing representation in German narrative texts.” <em>Literary and
Linguistic Computing</em>. <a href="https://doi.org/10.1093/llc/fqt024">https://doi.org/10.1093/llc/fqt024</a>.</p>
<p>Brunner, Annelen. 2015. <em>Automatische Erkennung von
Redewiedergabe: ein Beitrag zur quantitativen Narratologie.</em>
Narratologia: contibutions to narrative theory. Vol. 47. Berlin, Boston: De
Gruyter.</p>
<p>Brushwood, John S. 1966. <em>Mexico in its Novel. A
Nation’s Search for Identity.</em> Austin: University of Texas Press.</p>
<p>Bundesamt für Justiz. n.d.a “Gesetz über
Urheberrecht und verwandte Schutzrechte (Urheberrechtsgesetz). § 64 Allgemeines.”
Gesetze im Internet. <a href="https://web.archive.org/web/20230423112139/https://www.gesetze-im-internet.de/urhg/__64.html">https://web.archive.org/web/20230423112139/https://www.gesetze-im-internet.de/urhg/__64.html</a>.</p>
<p>Bundesamt für Justiz. n.d.b “Gesetz über
Urheberrecht und verwandte Schutzrechte (Urheberrechtsgesetz). § 66 Anonyme und
pseudonyme Werke.” Gesetze im Internet.<a href="https://web.archive.org/web/20230423112720/https://www.gesetze-im-internet.de/urhg/__66.html">https://web.archive.org/web/20230423112720/https://www.gesetze-im-internet.de/urhg/__66.html</a>.</p>
<p>Bundesamt für Justiz. n.d.c “Gesetz über
Urheberrecht und verwandte Schutzrechte (Urheberrechtsgesetz). § 70
Wissenschaftliche Ausgaben.” Gesetze im Internet.<a href="https://web.archive.org/web/20230423113034/https://www.gesetze-im-internet.de/urhg/__70.html">https://web.archive.org/web/20230423113034/https://www.gesetze-im-internet.de/urhg/__70.html</a>.</p>
<p>Burnard, Lou. 2014. <em>What is the text encoding
initative? How to add intelligent markup to digital resources.</em>
Encyclopédie numérique 3. Marseille: OpenEdition Press. <a href="https://doi.org/10.4000/books.oep.426">https://doi.org/10.4000/books.oep.426</a>.</p>
<p>Burrows, John. 2002. “‘Delta’: a Measure of Stylistic
Difference and a Guide to Likely Authorship.” <em>Literary and Linguistic
Computing</em> 17 (3): 267–287. <a href="https://doi.org/10.1093/llc/17.3.267">https://doi.org/10.1093/llc/17.3.267</a>.</p>
<p>Burrows, John. 2007. “All the Way Through: Testing for
Authorship in Different Frequency Strata.” <em>Literary and Linguistic
Computing</em> 22 (1): 27–47. <a href="https://doi.org/10.1093/llc/fqi067">https://doi.org/10.1093/llc/fqi067</a>.</p>
<p>Burton, Matt. 2013. “The Joy of Topic Modeling.” May 21,
2013. <a href="https://web.archive.org/web/20211012091043/http://mcburton.net/blog/joy-of-tm/">https://web.archive.org/web/20211012091043/http://mcburton.net/blog/joy-of-tm/</a>.</p>
<p>Byszuk, Joanna, Michal Woźniak, Mike Kestemont,
Albert Leśniak, Wojciech Łukasik, Artjoms Šeļa, and Maciej Eder. 2020. “Detecting
Direct Speech in Multilingual Collection of 19th-century Novels.” In
<em>Proceedings of LT4HALA 2020 – 1st Workshop on Language Technologies for
Historical and Ancient Languages</em>, 100–104. Marseille: European Language
Resources Association (ELRA). <a href="https://web.archive.org/web/20230611135104/https://aclanthology.org/2020.lt4hala-1.15.pdf">https://web.archive.org/web/20230611135104/https://aclanthology.org/2020.lt4hala-1.15.pdf</a></p>
<p>Calderón, Mario. 2005. “La novela costumbrista
mexicana.” In <em>La república de las letras. Asomos a la cultura escrita del
México decimonónico</em>, edited by Belem Clark de Lara and Elisa Speckman
Guerra, 315–324. Vol. 1: Ambientes, asociaciones y grupos. Movimientos, temas y
géneros literarios. México: Universidad Nacional Autónoma de México.</p>
<p>Calvo Tello, José. 2018. “Genre Classification in
Novels: A Hard Task for Humans and Machines?” In <em>EADH 2018: Data in Digital
Humanities. Conference Abstracts.</em> Galway: National University of
Ireland. <a href="https://web.archive.org/web/20230304103733/https://eadh2018.exordo.com/files/papers/46/final_draft/20181205_genre_classification_human_vs_machines.pdf">https://web.archive.org/web/20230304103733/https://eadh2018.exordo.com/files/papers/46/final_draft/20181205_genre_classification_human_vs_machines.pdf</a>.</p>
<p>Calvo Tello, José, ed. 2021a. “Corpus of Novels of
the Spanish Silver Age (CoNSSA).” Version 1.0.0. GitHub.com. Accessed December 9,
2022. <a href="https://github.com/cligs/conssa">https://github.com/cligs/conssa</a>.</p>
<p>Calvo Tello, José. 2021b. <em>The Novel in the
Spanish Silver Age. A Digital Analysis of Genre Using Machine Learning.</em>
Digital Humanities Research, vol. 4. Bielefeld: Bielefeld University Press. <a href="https://doi.org/10.14361/9783839459256">https://doi.org/10.14361/9783839459256</a>.</p>
<p>Calvo Tello, José, Ulrike
Henny-Krahmer, and Christof Schöch. 2018. “Textbox. Análisis del léxico mediante
corpus literarios.” In <em>Historia del léxico español y Humanidades
Digitales</em>, edited by Dolores Corbella, Alejandro Fajardo, and Jutta
Langenbacher, 225–253. Berlin: Peter Lang.</p>
<p>Calvo Tello, José, Daniel Schlör, Ulrike Henny,
and Christof Schöch. 2017. “Neutralizing the Authorial Signal in Delta by
Penalization: Stylometric Clustering of Genre in Spanish Novels.” In <em>Digital
Humanities 2017. Conference Abstracts, Montréal, Canada, August 8–11,
2017</em>, 181–184. Montreal: McGill University & Université de Montréal.
<a href="https://web.archive.org/web/20230212053238/https://dh2017.adho.org/abstracts/037/037.pdf">https://web.archive.org/web/20230212053238/https://dh2017.adho.org/abstracts/037/037.pdf</a>.</p>
<p>Cambaceres, Eugenio. (1885) 2000. <em>Sin rumbo
(en formato HTML).</em> Alicante: Biblioteca Virtual Miguel de Cervantes.
<a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmc1v5d1">https://www.cervantesvirtual.com/nd/ark:/59851/bmc1v5d1</a>.</p>
<p>Cambaceres, Eugenio. 2008. “Sin rumbo.” Wikisource.
<a href="https://web.archive.org/web/20230422143111/https://es.wikisource.org/wiki/Sin_rumbo">https://web.archive.org/web/20230422143111/https://es.wikisource.org/wiki/Sin_rumbo</a>.</p>
<p>Campo y Valle, Ángel de. 2009. <em>La Rumba.</em>
Colección Autores del Siglo XIX. México: Instituto Latinoamericano de la
Comunicación Educativa. <a href="http://web.archive.org/web/20160615221017/http://bibliotecadigital.ilce.edu.mx/Colecciones/ObrasClasicas/_docs/Rumba.pdf">http://web.archive.org/web/20160615221017/http://bibliotecadigital.ilce.edu.mx/Colecciones/ObrasClasicas/_docs/Rumba.pdf</a>.</p>
<p>Cárabes, Celia Miranda, and Jorge A. Ruedas
de la Serna. 1998. <em>La novela corta en el primer romanticismo
mexicano.</em> 2nd ed. Mexico: Universidad Nacional Autónoma de
México.</p>
<p>Cárrega, Hemilce. 1986. <em>Las novelas argentinas de
Carlos María Ocantos.</em> Buenos Aires: Febra Editores.</p>
<p>Centre National de Ressources Textuelles et Lexicales
(CNRTL). 2012. “RASTAQUOUÈRE.” Portail lexical. <a href="https://web.archive.org/web/20230611105723/https://www.cnrtl.fr/etymologie/rastaquou%C3%A8re">https://web.archive.org/web/20230611105723/https://www.cnrtl.fr/etymologie/rastaquou%C3%A8re</a>.</p>
<p>Centro Biblioteca Virtual Miguel de Cervantes. 2023.
“Biblioteca Virtual Miguel de Cervantes.” Accessed March 28, 2023. <a href="http://www.cervantesvirtual.com/">http://www.cervantesvirtual.com/</a>.</p>
<p>Chaves, José Ricardo. 2011. “Huellas y enigmas de la
novela corta en el siglo XIX.” In <em>Una selva infinita. La novela corta en
México (1872–2011)</em>, edited by Gustavo Jiménez Aguirre, Gabriel M.
Enríquez Hernández, Esther Martínez Luna, Salvador Tovar Mendoza, and Raquel
Velasco, 109–127. México: Fundación para las Letras Mexicanas.</p>
<p>Chávez, Daniar, and Marco Urdapilleta. 2015.
“Prólogo.” In <em>Cartografía de la literatura de viaje en
Hispanoamérica</em>, edited by Daniar Chávez and Marco Urdapilleta, 9–17.
México: Universidad Autónoma del Estado de México.</p>
<p>CLiGS. n.d. “Call for Papers: Digital Stylistics in Romance
Studies and beyond.” CLiGS – Computergestützte literarische Gattungsstilistik.
Accessed October 23, 2022. <a href="http://web.archive.org/web/20221023113851/https://cligs.hypotheses.org/digital-stylistics-in-romance-studies-and-beyond/call-for-papers">http://web.archive.org/web/20221023113851/https://cligs.hypotheses.org/digital-stylistics-in-romance-studies-and-beyond/call-for-papers</a>.</p>
<p>Computational Stylistics Group.
2023. “Resources.” <a href="https://web.archive.org/web/20230423092924/https://computationalstylistics.github.io/resources/">https://web.archive.org/web/20230423092924/https://computationalstylistics.github.io/resources/</a>.</p>
<p>Cranenburgh, Andreas van, and Corina Koolen.
2015. “Identifying Literary Texts with Bigrams.” In <em>Proceedings of the
Fourth Workshop on Computational Linguistics for Literature</em>, 58–67.
Denver, Colorado: Association for Computational Linguistics. <a href="http://dx.doi.org/10.3115/v1/W15-0707">http://dx.doi.org/10.3115/v1/W15-0707</a>.</p>
<p>Creative Commons. n.d. “Public Domain Mark 1.0.”
<a href="https://web.archive.org/web/20230610120916/https://creativecommons.org/publicdomain/mark/1.0/deed.en">https://web.archive.org/web/20230610120916/https://creativecommons.org/publicdomain/mark/1.0/deed.en</a>.</p>
<p>Croce, Benedetto. 1905. <em>Aesthetik als Wissenschaft
des Ausdrucks und allgemeine Linguistik. Theorie und Geschichte.</em>
Leipzig: E.A. Seemann.</p>
<p>Cuéllar, José Tomás de. 1890. “Prólogo.” In
<em>Ensalada de pollos. Novela de estos tiempos que corren (1871) tomada del
carnet de Facundo (José T. de Cuéllar).</em> Vol. 1 of <em>La linterna
mágica. Segunda época.</em> Barcelona: Tipo-Litografía de Hermenegildo
Miralles. <a href="http://web.archive.org/web/20230128094558/http://cdigital.dgb.uanl.mx/la/1080046422_C/1080046436_T2/1080046436_01.pdf">http://web.archive.org/web/20230128094558/http://cdigital.dgb.uanl.mx/la/1080046422_C/1080046436_T2/1080046436_01.pdf</a>.</p>
<p>Daireaux, Godofredo. (1945) 2001. <em>Los dioses
de la Pampa (en formato HTML).</em> Alicante: Biblioteca Virtual Miguel de
Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmcp55j4 ">https://www.cervantesvirtual.com/nd/ark:/59851/bmcp55j4 </a>.</p>
<p>Daireaux, Godofredo. 2006. “Los dioses de la Pampa.”
Wikisource. <a href="https://web.archive.org/web/20230328202403/https://es.wikisource.org/wiki/Los_dioses_de_la_Pampa_%28Versi%C3%B3n_para_imprimir%29">https://web.archive.org/web/20230328202403/https://es.wikisource.org/wiki/Los_dioses_de_la_Pampa_%28Versi%C3%B3n_para_imprimir%29</a>.</p>
<p>Danneberg, Lutz, and Jürg Niederhauser,
eds. 1998. <em>Darstellungsformen der Wissenschaften im Kontrast: Aspekte der
Methodik, Theorie und Empirie.</em> Tübingen: Narr.</p>
<p>Derrida, Jacques. 1980. “The Law of Genre.” Translated by
Avital Ronell. <em>Critical Inquiry</em> 7 (1): 55–81.</p>
<p>Díaz Covarrubias, Juan. n.d. <em>El diablo en
México.</em> Obras clásicas de siempre. Biblioteca Digital del ILCE. <a href="https://web.archive.org/web/20230423115244/http://bibliotecadigital.ilce.edu.mx/Colecciones/ObrasClasicas/_docs/El_diablo_en_Mexico-Juan_Diaz_Covarrubias.pdf">https://web.archive.org/web/20230423115244/http://bibliotecadigital.ilce.edu.mx/Colecciones/ObrasClasicas/_docs/El_diablo_en_Mexico-Juan_Diaz_Covarrubias.pdf</a>.</p>
<p>Dill, Hans-Otto. 1999. <em>Geschichte der
lateinamerikanischen Literatur im Überblick.</em> Stuttgart: Reclam.</p>
<p>Du, Keli. 2019. “A Survey on LDA Topic Modeling in Digital
Humanities.” In <em>Proceedings of DH2019: ‘Complexities’.</em> Utrecht:
Utrecht University. <a href="https://web.archive.org/web/20220121042220/https://dev.clariah.nl/files/dh2019/boa/0326.html">https://web.archive.org/web/20220121042220/https://dev.clariah.nl/files/dh2019/boa/0326.html</a>.</p>
<p>Dubrow, Heather. (1982) 2014. <em>Genre.</em>
Reprint, London: Routledge.</p>
<p>Duff, David, ed. 2010. <em>Modern Genre Theory.</em>
Harlow: Longman.</p>
<p>Eder, Maciej. 2017. “Visualization in stylometry: Cluster
analysis using networks.” <em>Digital Scholarship in the Humanities</em> 32
(1): 50–64. <a href="https://doi.org/10.1093/llc/fqv061">https://doi.org/10.1093/llc/fqv061</a>.</p>
<p>Elkafrawy, Passent, Amr Mausad, and Heba
Esmail. 2015. “Experimental Comparison of Methods for Multi-Label Classification
in Different Application Domains.” <em>International Journal of Computer
Applications</em> 114 (19): 1–9. <a href="http://web.archive.org/web/20230513205320/https://research.ijcaonline.org/volume114/number19/pxc3901666.pdf">http://web.archive.org/web/20230513205320/https://research.ijcaonline.org/volume114/number19/pxc3901666.pdf</a>.</p>
<p>Eroms, Hans-Werner. 2008. <em>Stil und Stilistik: eine
Einführung.</em> Berlin: Schmidt.</p>
<p>Ertler, Klaus-Dieter. 2002. <em>Kleine Geschichte des
lateinamerikanischen Romans: Strömungen – Autoren – Werke.</em> Tübingen:
Gunter Narr.</p>
<p>Escalona Rios, Lina. 2006. “El trabajo
bibliográfico en México.” In <em>Recursos bibliográficos y de
información</em>, edited by Hugo Alberto Figueroa Alcántara and César Augusto
Ramírez Velázquez, 185–215. México: Universidad Nacional Autónoma de México. <a href="http://hdl.handle.net/10391/4727">http://hdl.handle.net/10391/4727</a>.</p>
<p>Estrada, Santiago. 1866. <em>La flor de las
tumbas.</em> Buenos Aires: Imprenta del Siglo.</p>
<p>Evert, Stefan, Thomas Proisl, Fotis Jannidis,
Isabella Reger, Steffen Pielström, Christof Schöch, and Thorsten Vitt. 2017.
“Understanding and explaining Delta measures for authorship attribution.”
<em>Digital Scholarship in the Humanities</em> 32 (Supplement 2): ii4–ii16.
<a href="https://doi.org/10.1093/llc/fqx023">https://doi.org/10.1093/llc/fqx023</a>.</p>
<p>Expert Advisory Group on Language Engineering Standards
(EAGLES). 1996. “EAGLES. Recommendations for the Morphosyntactic Annotation of
Corpora.” <a href="https://web.archive.org/web/20230610174614/https://home.uni-leipzig.de/burr/Verb/htm/LinkedDocuments/annotate.pdf">https://web.archive.org/web/20230610174614/https://home.uni-leipzig.de/burr/Verb/htm/LinkedDocuments/annotate.pdf</a>.</p>
<p>Fellbaum, Christiane, ed. 1998. <em>WordNet: An
Electronic Lexical Database.</em> Cambridge, MA: MIT Press.</p>
<p> Fernández-Arias Campoamor, José. 1952.
<em>Novelistas de Mejico: esquema de la historia de la novela mejicana (de
Lizardi al 1950).</em> Madrid: Ediciones Cultura Hispánica. </p>
<p>Fernández Prieto, Celia. 1996. “Poética de la
novela histórica como género literario.” <em>Signa. Revista de la Asociación
Española de Semiótica</em> 5: 185–202. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmc7p9c7">https://www.cervantesvirtual.com/nd/ark:/59851/bmc7p9c7</a>.</p>
<p>Ferrer, José Luis. 2018. <em>La invención de Cuba:
Novela y nación (1837–1846).</em> Madrid: Editorial Verbum.</p>
<p>Fièvre, Paul, ed. 2007–2022. “Théâtre Classique.” Accessed
December 10, 2022. <a href="https://www.theatre-classique.fr">https://www.theatre-classique.fr</a>.</p>
<p>Firth, John Rupert. 1968. “A synopsis of linguistic theory
1930–1955.” In <em>Selected Papers of J. R. Firth 1952–1959</em>, edited by F.
R. Palmer, 168–205. Bloomington, London: Indiana University Press.</p>
<p>Fischer, Frank, Ingo Börner, Mathias Göbel,
Angelika Hechtl, Christopher Kittel, Carsten Milling, and Peer Trilcke. 2019.
“Programmable Corpora: Introducing DraCor, an Infrastructure for the Research on
European Drama.” In <em>Proceedings of DH2019: ‘Complexities’.</em> Utrecht:
Utrecht University. <a href="http://web.archive.org/web/20220303001044/https://dev.clariah.nl/files/dh2019/boa/0268.html">http://web.archive.org/web/20220303001044/https://dev.clariah.nl/files/dh2019/boa/0268.html</a>.</p>
<p>Fischer, Frank, and Jannik Strötgen. 2017.
“Corpus of German-Language Fiction (txt).” figshare. <a href="https://doi.org/10.6084/m9.figshare.4524680.v1">https://doi.org/10.6084/m9.figshare.4524680.v1</a>.</p>
<p>Fischer, Frank, Peer Trilcke, Julia Jennifer Beine,
and Boris Orekhov, eds. n.d. “Drama Corpora Project.” Accessed December 6, 2022.
<a href="https://dracor.org/">https://dracor.org/</a>.</p>
<p>Fishelov, David. 1993. <em>Metaphors of genre: the
role of analogies in genre theory.</em> University Park, PA: Pennsylvania
State Univ. Press.</p>
<p>Fix, Ulla, Andreas Gardt, and Joachim Knape, eds.
2008. <em>Rhetoric and Stylistics. An International Handbook of Historical and
Systematic Research.</em> 2 vols. Berlin, New York: De Gruyter.</p>
<p>Fludernik, Monika. 2009. “Roman.” In <em>Handbuch der
literarischen Gattungen</em>, edited by Dieter Lamping and Sandra Poppe,
627–645. Stuttgart: Kröner.</p>
<p>Foote, Jonathan. 2000. “Automatic Audio Segmentation Using
A Measure of Audio Novelty.” In <em>2000 IEEE International Conference on
Multimedia and Expo. ICME2000. Proceedings. Latest Advances in the Fast
Changing World of Multimedia</em>, 452–455. Vol. 1. New York: IEEE. <a href="https://doi.org/10.1109/ICME.2000.869637">https://doi.org/10.1109/ICME.2000.869637</a>.</p>
<p>Forster, E. M. 1927. <em>Aspects of the novel.</em>
New York: Harcourt, Brace & Company.</p>
<p>Fowler, Alastair. 1982. <em>Kinds of Literature. An
Introduction to the Theory of Genres and Modes.</em> Oxford: Clarendon
Press.</p>
<p>Frech, Susana. 1998–2017. “Países, sus capitales y
gentilicios* correspondientes Es < En.” Susana Frech. Traducciones
Profesionales. <a href="https://web.archive.org/web/20210615063220/http://www.susana-translations.de/paises.htm">https://web.archive.org/web/20210615063220/http://www.susana-translations.de/paises.htm</a>.</p>
<p>Fricke, Harald. 1981. <em>Norm und Abweichung. Eine
Philosophie der Literatur.</em> München: Beck.</p>
<p>Fricke, Harald. 2010. “Definitionen und Begriffsformen.”
In <em>Handbuch Gattungstheorie</em>, edited by Rüdiger Zymner, 7–10.
Stuttgart, Weimar: J.B. Metzler.</p>
<p>Frow, John. 2015. <em>Genre. The New Critical
Idiom.</em> 2nd ed. London: Routledge.</p>
<p>Fubini, Mario. 1971. <em>Entstehung und Geschichte der
literarischen Gattungen.</em> Tübingen: Max Niemeyer Verlag.</p>
<p>Fundación para las Letras Mexicanas
A.C. 2018. “Enciclopedia de la literatura en México.” <a href="https://web.archive.org/web/20230603174401/http://www.elem.mx/">https://web.archive.org/web/20230603174401/http://www.elem.mx/</a>.</p>
<p>Gálvez, Marina. 1990. <em>La novela hispanoamericana
(hasta 1940).</em> Madrid: Taurus.</p>
<p>Gansel, Christina. 2011.
<em>Textsortenlinguistik.</em> Göttingen: Vandenhoeck &
Ruprecht.</p>
<p>García, Germán. 1952. <em>La novela argentina: Un
itinerario.</em> Buenos Aires: Editorial Sudamericana.</p>
<p>García Berrio, Antonio, and Javier
Huerta Calvo. 2009. <em>Los géneros literarios: sistema e historia. Una
introducción.</em> 5th ed. Madrid: Cátedra.</p>
<p>Gemeinböck, Iris. 2016. “Representativeness in corpora
of literary texts: introducing the C18P project.” <em>MATLIT: Materialidades da
Literatura</em> 4 (2): 29–48. <a href="https://doi.org/10.14195/2182-8830_4-2_2">https://doi.org/10.14195/2182-8830_4-2_2</a>.</p>
<p>Genette, Gérard. 1987. <em>Seuils.</em> Paris:
Seuil.</p>
<p>Genette, Gérard. 2014. “The Architext.” In <em>Modern
Genre Theory</em>, edited by David Duff, 210–218. New York: Routledge.</p>
<p>Gerlach, Martin, Tiago P. Peixoto, and
Eduardo G. Altmann. 2018. “A network approach to topic models.” <em>Science
Advances</em> 4 (7): 1–11. <a href="https://dx.doi.org/10.1126/sciadv.aaq1360">https://dx.doi.org/10.1126/sciadv.aaq1360</a>.</p>
<p>Ghiano, Juan Carlos. 1957. “La novela gauchesca.” <em>La
Biblioteca</em>, Época 2, 9 (1): 17–38.</p>
<p>Gianitsos, Efthimios Tim, Thomas J. Bolt, Pramit
Chaudhuri, and Joseph P. Dexter. 2019. “Stylometric Classification of Ancient
Greek Literary Texts by Genre.” In <em>Proceedings of the 3rd Joint SIGHUM
Workshop on Computational Linguistics for Cultural Heritage, Social Sciences,
Humanities and Literature, Minneapolis, MN, USA, June 7, 2019</em>, 52–60.
Minneapolis: Association for Computational Linguistics. <a href="http://dx.doi.org/10.18653/v1/W19-2507">http://dx.doi.org/10.18653/v1/W19-2507</a>. </p>
<p>Gius, Evelyn, Katharina Krüger, and Carla
Sökefeld. 2019. “Korpuserstellung als literaturwissenschaftliche Aufgabe.” In
<em>DHd2019. Digital Humanities: multimedial & multimodal.
Konferenzabstracts, Universitäten zu Mainz und Frankfurt, 25. bis 29. März
2019</em>, edited by Patrick Sahle, 164–166. Frankfurt & Mainz: Verband
Digital Humanities im deutschsprachigen Raum e.V. <a href="https://doi.org/10.5281/zenodo.2596095">https://doi.org/10.5281/zenodo.2596095</a>. </p>
<p>Gius, Evelyn, Christof Schöch, and Peer
Trilcke, eds. 2022–2023. Journal of Computational Literary Studies (JCLS).
Darmstadt: Universitäts- und Landesbibliothek Darmstadt. <a href="https://web.archive.org/web/20230210112118/https://jcls.io/">https://web.archive.org/web/20230210112118/https://jcls.io/</a>.</p>
<p>Gnutzmann, Claus. 1990. <em>Kontrastive
Linguistik.</em> Frankfurt am Main: Lang.</p>
<p>Gnutzmann, Rita. 1998. <em>La novela naturalista en
Argentina (1880–1900).</em> Amsterdam, Atlanta: Rodopi.</p>
<p>Goić, Cedomil. 1980. <em>Historia de la novela
hispanoamericana.</em> 2nd ed. Valparaiso: Ed. Univ. de Valparaiso.</p>
<p>Goić, Cedomil. 2009. <em>Brevísima relación de la historia
de la novela hispanoamericana.</em> Madrid: Biblioteca Nueva.</p>
<p>González, Joaquín Víctor. (1905) 2001. <em>Mis
montañas (en formato HTML).</em> Alicante: Biblioteca Virtual Miguel de
Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmcw37r4">https://www.cervantesvirtual.com/nd/ark:/59851/bmcw37r4</a>.</p>
<p>Gopnik, Alison, Andrew Meltzoff, and Patricia Kuhl.
2009. <em>The Scientist in the Crib. What Early Learning Tells Us About the
Mind.</em> New York: HarperCollins. First published 1999.</p>
<p>Gorriti, Juana Manuela. (1889) 2001. <em>La tierra
natal (en formato HTML).</em> Alicante: Biblioteca Virtual Miguel de
Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmc222t4">https://www.cervantesvirtual.com/nd/ark:/59851/bmc222t4</a>.</p>
<p>Gülich, Elisabeth, and Wolfgang Raible. 1872.
<em>Textsorten. Differenzierungskriterien aus linguistischer Sicht.</em>
Frankfurt am Main: Athenäum-Verlag.</p>
<p>Gutiérrez, Eduardo. (1880) 2016a. <em>El
Jorobado.</em> Wikimedia Commons. <a href="https://web.archive.org/web/20230325193326/https://upload.wikimedia.org/wikipedia/commons/c/c3/El_Jorobado_-_Eduardo_Gutierrez.pdf">https://web.archive.org/web/20230325193326/https://upload.wikimedia.org/wikipedia/commons/c/c3/El_Jorobado_-_Eduardo_Gutierrez.pdf</a>.</p>
<p>Gutiérrez, Eduardo. (1880) 2016b. <em>Juan
Moreira.</em> Wikimedia Commons. <a href="https://web.archive.org/web/20230325193551/https://upload.wikimedia.org/wikipedia/commons/2/21/Juan_Moreira_-_Eduardo_Gutierrez.pdf">https://web.archive.org/web/20230325193551/https://upload.wikimedia.org/wikipedia/commons/2/21/Juan_Moreira_-_Eduardo_Gutierrez.pdf</a>.</p>
<p>Gutiérrez, Eduardo. (1893) 2016. <em>Carlo
Lanza. Episodios curiosos.</em> Wikimedia Commons. <a href="https://web.archive.org/web/20230325192637/https://upload.wikimedia.org/wikipedia/commons/e/e0/Carlo_Lanza_-_Eduardo_Gutierrez.pdf">https://web.archive.org/web/20230325192637/https://upload.wikimedia.org/wikipedia/commons/e/e0/Carlo_Lanza_-_Eduardo_Gutierrez.pdf</a>.</p>
<p>Gutiérrez, Eduardo, and Bartolomé R.
Aprile. (1944) 2015. <em>Juan Cuello. Novela histórica de Eduardo Gutiérrez,
versificada por Bartolomé R. Aprile.</em> Berlin: Ibero-Amerikanisches
Institut – Preußischer Kulturbesitz. <a href="http://resolver.iai.spk-berlin.de/IAI00005CB300000000">http://resolver.iai.spk-berlin.de/IAI00005CB300000000</a>.</p>
<p>Gutiérrez, Eduardo, and Silverio Manco.
(1948) 2015. <em>El rastreador. Novela histórica de Eduardo Gutiérrez,
versificada por Silverio Manco.</em> Berlin: Ibero-Amerikanisches Institut –
Preußischer Kulturbesitz. <a href="http://resolver.iai.spk-berlin.de/IAI00005C9700000000">http://resolver.iai.spk-berlin.de/IAI00005C9700000000</a>.</p>
<p>Gutiérrez, Eduardo, and Apolinario Sierra.
(1944) 2015. <em>Aparicio Saravia. Novela histórica por Eduardo Gutiérrez,
versificada por Apolinario Sierra.</em> Berlin: Ibero-Amerikanisches Institut
– Preußischer Kulturbesitz. <a href="http://resolver.iai.spk-berlin.de/IAI00005CB200000000">http://resolver.iai.spk-berlin.de/IAI00005CB200000000</a>.</p>
<p>Gymnich, Marion, and Birgit Neumann. 2007.
“Vorschläge für eine Relationierung verschiedener Aspekte und Dimensionen des
Gattungskonzepts: Der Kompaktbegriff Gattung.” In <em>Gattungstheorie und
Gattungsgeschichte</em>, edited by Marion Gymnich, Birgit Neumann, and Ansgar
Nünning, 31–52. Trier: WVT.</p>
<p>Gymnich, Marion, Birgit Neumann, and
Ansgar Nünning, eds. 2007. <em>Gattungstheorie und Gattungsgeschichte.</em>
Trier: WVT.</p>
<p>HathiTrust. 2008–2023. “HathiTrust Digital
Library.” <a href="https://www.hathitrust.org/">https://www.hathitrust.org/</a>. Accessed March 28, 2023.</p>
<p>Hempfer, Klaus W. 1973. <em>Gattungstheorie.
Information und Synthese.</em> München: Fink.</p>
<p>Hempfer, Klaus W. 2014. “Some Aspects of a Theory of
Genre.” In <em>Linguistics and Literary Studies/Linguistik und
Literaturwissenschaft. Interfaces, Encounters, Transfers/Begegnungen,
Interferenzen und Kooperationen</em>, edited by Monika Fludernik and Daniel
Jacob, 405–422. Berlin: De Gruyter.</p>
<p>Henny, Ulrike, and Frederike Neuber. 2017. “Criteria
for Reviewing Digital Text Collections, version 1.0.” Institut für Dokumentologie
und Editorik. <a href="https://web.archive.org/web/20230418162046/https://www.i-d-e.de/publikationen/weitereschriften/criteria-text-collections-version-1-0/">https://web.archive.org/web/20230418162046/https://www.i-d-e.de/publikationen/weitereschriften/criteria-text-collections-version-1-0/</a>. </p>
<p>Henny-Krahmer, Ulrike. 2017. “Bib-ACMé:
Bibliografía digital de novelas argentinas, cubanas y mexicanas (1810–1930).” In
<em>III Congreso de la Sociedad Internacional Humanidades Digitales
Hispánicas. Sociedades, políticas, saberes (Libro de resúmenes)</em>, edited
by Nuria Rodríguez Ortega, 99–104. Málaga: Universidad de Málaga. <a href="https://web.archive.org/web/20200514082600/https://humanidadesdigitaleshispanicas.es/wp-content/uploads/2020/03/Actas-HDH2017.pdf">https://web.archive.org/web/20200514082600/https://humanidadesdigitaleshispanicas.es/wp-content/uploads/2020/03/Actas-HDH2017.pdf</a>.</p>
<p>Henny-Krahmer, Ulrike, ed. 2017–2021.
“Bib-ACMé. Bibliografía digital de novelas argentinas, cubanas y mexicanas
(1830–1910).” Version 1.2. Zenodo. <a href="https://doi.org/10.5281/zenodo.4453491">https://doi.org/10.5281/zenodo.4453491</a>.</p>
<p>Henny-Krahmer, Ulrike. 2018. “Exploration of
Sentiments and Genre in Spanish American Novels.” In <em>Digital Humanities
2018. Puentes–Bridges. Book of Abstracts. Mexico City, 26–29 June 2018</em>,
399–403. Mexico City: Red de Humanidades Digitales. <a href="https://web.archive.org/web/20200702225303/https://dh2018.adho.org/exploration-of-sentiments-and-genre-in-spanish-american-novels/">https://web.archive.org/web/20200702225303/https://dh2018.adho.org/exploration-of-sentiments-and-genre-in-spanish-american-novels/</a>.</p>
<p>Henny-Krahmer, Ulrike, ed. 2021a. “Corpus de
novelas hispanoamericanas del siglo XIX (conha19).” Version 1.0.1. Zenodo. <a href="https://doi.org/10.5281/zenodo.4766987">https://doi.org/10.5281/zenodo.4766987</a>.</p>
<p>Henny-Krahmer, Ulrike. 2021b. “Data accompanying
the dissertation ʻGenre analysis and corpus design: 19th century Spanish American
novels (1830–1910)ʼ.” Version 1.0.0. Zenodo. <a href="http://doi.org/10.5281/zenodo.4451928">http://doi.org/10.5281/zenodo.4451928</a>.</p>
<p>Henny-Krahmer, Ulrike. 2021c. “Features for the
classification of Spanish American 19th century novels by subgenre.” Version
1.0.0. Zenodo. <a href="http://doi.org/10.5281/zenodo.4449494">http://doi.org/10.5281/zenodo.4449494</a>.</p>
<p>Henny-Krahmer, Ulrike. 2021d. “Scripts
accompanying the dissertation ʻGenre analysis and corpus design: 19th century
Spanish American novels (1830–1910)ʼ.” Version 1.0.0. Zenodo. <a href="https://doi.org/10.5281/zenodo.4445877">https://doi.org/10.5281/zenodo.4445877</a>.</p>
<p>Henny-Krahmer, Ulrike. 2022. “Novelas originales y
americanas. A Digital Analysis of References to Identity in Subtitles of Spanish
American 19th Century Novels.” <em>apropos [Perspektiven auf die Romania]</em>
9: 14–36. <a href="https://doi.org/10.15460/apropos.9.1893">https://doi.org/10.15460/apropos.9.1893</a>.</p>
<p>Henny-Krahmer, Ulrike, Katrin Betz, Daniel
Schlör, and Andreas Hotho. 2018. “Alternative Gattungstheorien. Das
Prototypenmodell am Beispiel hispanoamerikanischer Romane.” In <em>DHd 2018.
Kritik der digitalen Vernunft. Konferenzabstracts, Köln, 26.2.-2.3.2018</em>,
edited by Georg Vogeler, 105–112. Köln: Universität zu Köln. <a href="https://doi.org/10.5281/zenodo.4622412">https://doi.org/10.5281/zenodo.4622412</a>.</p>
<p>Henny-Krahmer, Ulrike, and Christof Schöch.
2016. “How good are our texts, really? Quality assurance for literary texts from
various sources.” CLiGS – Computergestützte literarische Gattungsstilistik. <a href="https://web.archive.org/web/20230422152455/https://cligs.hypotheses.org/371">https://web.archive.org/web/20230422152455/https://cligs.hypotheses.org/371</a>.</p>
<p>Herrmann, J. Berenike, Christof Schöch, and Karina
van Dalen-Oskam. 2015. “Revisiting Style, a Key Concept in Literary Studies.”
<em>Journal of Literary Theory</em> 9 (1): 25–52. <a href="https://doi.org/10.1515/jlt-2015-0003">https://doi.org/10.1515/jlt-2015-0003</a>.</p>
<p>Hesselbach, Robert, José Calvo Tello,
Ulrike Henny-Krahmer, Christof Schöch, and Daniel Schlör, eds. Forthcoming.
<em>Digital Stylistics in Romance Studies and Beyond.</em> Heidelberg:
Heidelberg University Publishing.</p>
<p> Hettinger, Lena, Martin Becker, Isabella Reger,
Fotis Jannidis, and Andreas Hotho. 2015. “Genre Classification on German Novels.”
In <em>Proceedings of the 26th International Workshop on Database and Expert
Systems Applications (DEXA)</em>, 249–253. Valencia. <a href="https://doi.org/10.1109/DEXA.2015.62">https://doi.org/10.1109/DEXA.2015.62</a>.</p>
<p> Hettinger, Lena, Isabella Reger, Fotis Jannidis,
and Andreas Hotho. 2016. “Classification of Literary Subgenres.” In <em>DHd2016.
Modellierung – Vernetzung – Visualisierung. Die Digital Humanities als
fächerübergreifendes Forschungsparadigma. Konferenzabstracts. Universität
Leipzig 7. bis 12. März 2016</em>, 160–164. Duisburg: nisaba verlag. <a href="https://doi.org/10.5281/zenodo.4645368">https://doi.org/10.5281/zenodo.4645368</a>.</p>
<p>Holmes, David I. 1998. “The Evolution of Stylometry in
Humanities Scholarship.” <em>Literary and Linguistic Computing</em> 13 (3):
111–117. <a href="https://doi.org/10.1093/llc/13.3.111">https://doi.org/10.1093/llc/13.3.111</a>.</p>
<p>Hoover, David L., Jonathan Culpeper,
and Kieran O’Halloran. 2014. <em>Digital Literary Studies: Corpus Approaches to
Poetry, Prose and Drama.</em> New York, London: Routledge.</p>
<p>Horstmann, Jan. 2018. “Topic Modeling.” forTEXT.
Literatur digital erforschen. <a href="https://web.archive.org/web/20230316111225/https://fortext.net/routinen/methoden/topic-modeling">https://web.archive.org/web/20230316111225/https://fortext.net/routinen/methoden/topic-modeling</a>. </p>
<p>Ianes, Raúl. 2018. “La ficción de la lengua en las Novelas
argentinas de Carlos María Ocantos: una lectura histórica.”
<em>Decimonónica</em> 15 (2): 14–28. <a href="https://web.archive.org/web/20230328191041/https://www.decimononica.org/wp-content/uploads/2018/07/Ianes_15.2.pdf">https://web.archive.org/web/20230328191041/https://www.decimononica.org/wp-content/uploads/2018/07/Ianes_15.2.pdf</a>.</p>
<p>Iguiniz, Juan Bautista. 1926. <em>Bibliografía de
novelistas mexicanos: ensayo biográfico, bibliográfico y crítico.</em>
México: Imprenta de la Secretaria de relaciones exteriores.</p>
<p>Íñigo Madrigal, Luis, Manuel Alvar, and
Fernando Aínsa, eds. 1982. <em>Historia de la literatura
hispanoamericana.</em> 3 vols. Madrid: Cátedra.</p>
<p>Instituto de Investigaciones
Bibliográficas. n.d. “Módulo de búsqueda.” Bibliografía Mexicana Siglo XIX. <a href="https://web.archive.org/web/20230603165352/http://bd.iib.unam.mx/iib/proyectos/sigloxix/modulo.html">https://web.archive.org/web/20230603165352/http://bd.iib.unam.mx/iib/proyectos/sigloxix/modulo.html</a>.</p>
<p>Instituto de Literatura y Lingüística
de la Academia de Ciencias de Cuba. 1999. <em>Diccionario de la literatura
cubana (en formato HTML).</em> Alicante: Biblioteca Virtual Miguel de
Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmckh0j1">https://www.cervantesvirtual.com/nd/ark:/59851/bmckh0j1</a>.</p>
<p>International Federation of Library Associations and
Institutions (IFLA). 2009. <em>Functional Requirements for Bibliographic
Records. Final report.</em>
<a href="https://repository.ifla.org/handle/123456789/811">https://repository.ifla.org/handle/123456789/811</a>.</p>
<p>Internet Archive. n.d. “Internet Archive.” <a href="https://web.archive.org/web/20230603161417/https://archive.org/">https://web.archive.org/web/20230603161417/https://archive.org/</a>.</p>
<p>Jacobs, Jürgen. 1986. “Bildungsroman und Pikaroroman.
Versuch einer Abgrenzung.” In <em>Der moderne deutsche Schelmenroman.
Interpretationen</em>, edited by Gerhart Hoffmeister, 9–18. Amsterdamer
Beiträge zur neueren Germanistik, vol. 20. Amsterdam: Rodopi.</p>
<p>Janik, Dieter. 2008. <em>Hispanoamerikanische
Literaturen. Von der Unabhängigkeit bis zu den Avantgarden (1810–1930).</em>
Tübingen: Narr Francke Attempto.</p>
<p>Jannidis, Fotis. 2007. “Computerphilologie.” In
<em>Handbuch Literaturwissenschaft. Gegenstände – Konzepte –
Institutionen</em>, edited by Thomas Anz, vol. 2, <em>Methoden und
Theorien</em>, 27–40. Stuttgart, Weimar: J.B. Metzler.</p>
<p>Jannidis, Fotis. 2010. “Methoden der computergestützten
Textanalyse.” In <em>Methoden der literatur- und kulturwissenschaftlichen
Textanalyse</em>, edited by Ansgar Nünning and Vera Nünning, 109–132.
Stuttgart, Weimar: J.B. Metzler.</p>
<p>Jannidis, Fotis. 2016. “Quantitative Analyse
literarischer Texte am Beispiel des Topic Modeling.” <em>Der
Deutschunterricht</em> 68 (5): 24–35.</p>
<p>Jannidis, Fotis, Leonard Konle, and Peter
Leinen. 2019. “Makroanalytische Untersuchung von Heftromanen.” In <em>DHd2019.
Digital Humanities: multimedial & multimodal. Konferenzabstracts,
Universitäten zu Mainz und Frankfurt, 25. bis 29. März 2019</em>, edited by
Patrick Sahle, 167–173. Frankfurt & Mainz: Verband Digital Humanities im
deutschsprachigen Raum e.V. <a href="https://doi.org/10.5281/zenodo.4622093">https://doi.org/10.5281/zenodo.4622093</a>.</p>
<p>Jannidis, Fotis, Leonard Konle, Albin Zehe,
Andreas Hotho, and Markus Krug. 2018. “Analysing Direct Speech in German Novels.”
In DHd 2018. <em>Kritik der digitalen Vernunft. Konferenzabstracts, Köln,
26.2.-2.3.2018</em>, edited by Georg Vogeler, 114–118. Köln: Universität zu
Köln. <a href="https://doi.org/10.5281/zenodo.4622454">https://doi.org/10.5281/zenodo.4622454</a>.</p>
<p>Jannidis, Fotis, Markus Krug, Martin Toepfer,
Frank Puppe, Isabella Reger, and Lukas Weimer. 2015. “Automatische Erkennung von
Figuren in deutschsprachigen Romanen.” In <em>DHd2015.
Konferenzabstracts.</em>
<a href="https://doi.org/10.5281/zenodo.4623273">https://doi.org/10.5281/zenodo.4623273</a>.</p>
<p>Jauß, Hans Robert. 2014. “Theory of Genres and Medieval
Literature.” In <em>Modern Genre Theory</em>, edited by David Duff, 127–147.
New York: Routledge.</p>
<p>Javed, Muhammad Aqib, Muhammad Shahzad Younis,
Siddique Latif, Junaid Qadir, and Adeel Baig. 2018. “Community detection in
networks: A multidisciplinary review.” <em>Journal of Network and Computer
Applications</em> 108: 87–111. <a href="https://doi.org/10.1016/j.jnca.2018.02.011">https://doi.org/10.1016/j.jnca.2018.02.011</a>.</p>
<p>Jeffries, Lesley, and Daniel McIntyre. 2010.
<em>Stylistics.</em> Cambridge: Cambridge University Press.</p>
<p>Jockers, Matthew L. 2013. <em>Macroanalysis. Digital
Methods & Literary History.</em> Topics in the Digital Humanities.
Urbana, Chicago, and Springfield: University of Illinois Press.</p>
<p>Juola, Patrick. 2006. <em>Authorship Attribution.</em>
Boston, Mass.: Now Publishers.</p>
<p>Kahle, Günther. 1993. <em>Lateinamerika Ploetz. Die
Geschichte der lateinamerikanischen Länder zum Nachschlagen.</em> 2nd ed.
Freiburg/Würzburg: Ploetz.</p>
<p>Kaiser, Dorothee. 2002. <em>Wege zum wissenschaftlichen
Schreiben. Eine kontrastive Untersuchung zu studentischen Texten aus Venezuela
und Deutschland.</em> Tübingen: Stauffenburg-Verlag.</p>
<p>Kaiser, Dorothee. 2008. “Ensayo o artículo científico? Una
comparación de tradiciones discursivas en Alemania y Latinoamérica.” In <em>Le
style, c’est l’homme: unité et pluralité du discours scientifique dans les
langues romanes</em>, edited by Ursula Reutner, 285–304. Frankfurt am Main:
Lang.</p>
<p>Keckeis, Paul, and Werner Michler. 2020.
“Einleitung: Gattungen und Gattungstheorie.” In <em>Gattungstheorie</em>,
edited by Paul Keckeis and Werner Michler, 7–48. Berlin: Suhrkamp.</p>
<p>Kessler, Brett, Geoffrey Numberg, and Hinrich
Schütze. 1997. “Automatic detection of text genre.” In <em>ACL '98/EACL '98:
Proceedings of the 35th Annual Meeting of the Association for Computational
Linguistics and Eighth Conference of the European Chapter of the Association
for Computational Linguistics</em>, 32–38. Stroudsburg, PA, USA: Association
for Computational Linguistics. <a href="http://dx.doi.org/10.3115/976909.979622">http://dx.doi.org/10.3115/976909.979622</a>.</p>
<p>Kim, Evgeny, Sebastian Padó, and Roman Klinger.
2017. “Prototypical Emotion Developments in Literary Genres.” <em>DH2017.
Conference Abstracts.</em> Montréal: McGill University & Université de
Montréal. <a href="https://web.archive.org/web/20230211105146/https://dh2017.adho.org/abstracts/203/203.pdf">https://web.archive.org/web/20230211105146/https://dh2017.adho.org/abstracts/203/203.pdf</a>.</p>
<p>Klauk, Tobias, and Tilmann Köppe. 2014. “Bausteine
einer Theorie der Fiktionalität.” In <em>Fiktionalität. Ein interdisziplinäres
Handbuch</em>, edited by Tobias Klauk and Tilmann Köppe, 3–31. Berlin,
Boston: De Gruyter.</p>
<p>Klausnitzer, Ralf, and Guido Naschert. 2007.
“Gattungstheoretische Kontroversen? Konstellationen der Diskussion von
Textordnungen im 20. Jahrhundert.” In <em>Kontroversen in der Literaturtheorie –
Literaturtheorie in der Kontroverse</em>, edited by Ralf Klausnitzer and
Carlos Spoerhase, 369–412. Bern: Peter Lang.</p>
<p>Kleinschmidt, Erich. 2003. “Prosa.” In
<em>Reallexikon der deutschen Literaturwissenschaft</em>, edited by Klaus
Weimar, Harald Fricke, and Jan-Dirk Müller, 168–172. Berlin, New York: De
Gruyter.</p>
<p>Kohut, Karl. 2016. <em>Kurze Einführung in Theorie und
Geschichte der lateinamerikanischen Literatur (1492–1920).</em> Berlin: Lit
Verlag.</p>
<p>Kompetenzzentrum – Trier Center for Digital Humanities.
2023. “Computational Literary Studies. A Bird's Eye View of Literature.” <a href="https://web.archive.org/web/20230210111714/https://tcdh.uni-trier.de/en/thema/computational-literary-studies">https://web.archive.org/web/20230210111714/https://tcdh.uni-trier.de/en/thema/computational-literary-studies</a>. </p>
<p>Konle, Leonard. 2019. “Word Embeddings für literarische
Texte.” Master’s thesis, Würzburg: Julius-Maximilians-Universität Würzburg. <a href="https://web.archive.org/web/20230305090725/https://lekonard.github.io/blog/Konle_Thesis.pdf">https://web.archive.org/web/20230305090725/https://lekonard.github.io/blog/Konle_Thesis.pdf</a>.</p>
<p>Köppe, Tilmann. 2014. “Die Institution Fiktionalität.” In
<em>Fiktionalität. Ein interdisziplinäres Handbuch</em>, edited by Tobias
Klauk and Tilmann Köppe, 35–49. Berlin, Boston: De Gruyter.</p>
<p>Krieg-Holz, Ulrike, and Lars Bülow. 2016.
<em>Linguististische Stil- und Textanalyse: eine Einführung.</em> Tübingen:
Narr Francke Attempto.</p>
<p>Lacey, Nick. 2000. <em>Narrative and Genre: Key Concepts
in Media Studies.</em> Basingstoke: Macmillan.</p>
<p>Lamping, Dieter, ed. 1990. <em>Gattungstheorie und
Gattungsgeschichte: ein Symposium.</em> Wuppertal: Bergische Universität,
Gesamthochschule Wuppertal.</p>
<p>Lamping, Dieter. 2010. “Komparatistische
Gattungsforschung.” In <em>Handbuch Gattungstheorie</em>, edited by Rüdiger
Zymner, 270–273. Stuttgart, Weimar: J.B. Metzler.</p>
<p>Landauer, Thomas K., and Susan T. Dumais. 1997.
“A solution to Plato’s problem: the Latent Semantic Analysis theory of
acquisition, induction, and representation of knowledge.” <em>Psychological
Review</em> 104: 211–240. <a href="https://psycnet.apa.org/doi/10.1037/0033-295X.104.2.211">https://psycnet.apa.org/doi/10.1037/0033-295X.104.2.211</a>.</p>
<p>Landauer, Thomas K., Peter W. Foltz, and
Darrell Laham. 1998. “Introduction to latent semantic analysis.” <em>Discourse
Processes</em> 25: 259–284. <a href="https://doi.org/10.1080/01638539809545028">https://doi.org/10.1080/01638539809545028</a>.</p>
<p>Lawrence, John, and Chris Reed. 2017. “Mining
Argumentative Structure from Natural Language text using Automatically Generated
Premise-Conclusion Topic Models.” In <em>Proceedings of the 4th Workshop on
Argument Mining</em>, 39–48. Copenhagen: Association for Computational
Linguistics (ACL). <a href="http://dx.doi.org/10.18653/v1/W17-5105">http://dx.doi.org/10.18653/v1/W17-5105</a>.</p>
<p>Leech, Geoffrey, and Mick Short. 2007. <em>Style in
Fiction. A Linguistic Introduction to English Fictional Prose.</em> 2nd ed.
Harlow, England: Pearson Education Limited.</p>
<p>Lefere, Robin. 2013. <em>La novela histórica:
(re)definición, caracterización, tipología.</em> Madrid: Visor Libros.</p>
<p>Lichtblau, Myron I. 1959. <em>The Argentine Novel in
the Nineteenth Century.</em> New York: Hispanic Institute in the United
States.</p>
<p>Lichtblau, Myron. 1997. <em>The Argentine novel: an
annotated bibliography.</em> Lanham, Maryland: Scarecrow.</p>
<p>Lindstrom, Naomi. 2004. <em>Early Spanish American
Narrative.</em> Austin: University of Texas Press.</p>
<p>Löfquist, Eva. 1995. <em>La novela histórica chilena
dentro del marco de la novelística chilena. 1843–1879.</em> Göteborg: Acta
Universitatis Gothoburgensis.</p>
<p>Lüdeling, Anke, and Merja Kytö, eds. 2008.
<em>Corpus Linguistics: An International Handbook.</em> 2 vols. Handbooks
of Linguistics and Communication Science (HSK). Berlin, Boston: De Gruyter.</p>
<p>Lukács, Georg. 1955. <em>Der Historische Roman.</em>
Berlin: Aufbau-Verlag.</p>
<p>Madjarov, Gjorji, Dragi Kocev, Dejan Gjorgjevikj,
and Sašo Džeroski. 2012. “An extensive experimental comparison of methods for
multi-label learning.” <em>Pattern Recognition</em> 45 (9): 3084–3104. <a href="https://doi.org/10.1016/j.patcog.2012.03.004">https://doi.org/10.1016/j.patcog.2012.03.004</a>.</p>
<p>Manning, Christopher D., and Hinrich Schütze.
1999. <em>Foundations of Statistical Natural Language Processing.</em>
Cambridge, Mass: The MIT Press.</p>
<p>Mansilla, Lucio Victorio. (1870) 2001. <em>Una
excursión a los indios ranqueles. Tomo Primero (en formato HTML).</em>
Alicante: Biblioteca Virtual Miguel de Cervantes. <a href="https://www.cervantesvirtual.com/nd/ark:/59851/bmcn8760">https://www.cervantesvirtual.com/nd/ark:/59851/bmcn8760</a>.</p>
<p>Martínez Cantón, Clara Isabel. 2008. “El
indigenismo en la obra de Vargas Llosa.” <em>Espéculo. Revista de estudios
literarios</em> 38. <a href="https://web.archive.org/web/20210226164843/https://webs.ucm.es/info/especulo/numero38/vllindig.html">https://web.archive.org/web/20210226164843/https://webs.ucm.es/info/especulo/numero38/vllindig.html</a>.</p>
<p>Mata, Óscar. 1999. <em>La novela corta mexicana en el
siglo XIX.</em> México: Universidad Nacional Autónoma de México.</p>