forked from cmohge1/LRBS-digital-book-history-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lrbsCatalog.json.js
1776 lines (1776 loc) · 64.5 KB
/
lrbsCatalog.json.js
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
var catData = [
{
"id": "http://zotero.org/groups/4293914/items/ME7YZNE7",
"type": "chapter",
"abstract": "Reflecting on the history and future of the book, the chapter imagines several possible alternatives to electronic texts as we know them today. The terms “platform” and “format” guide a speculative exploration through an archive of extant literary technologies—micrographic prints, Computexts, HyperCards, and ePUBs—and consideration of these distant materialities and their associated practices, interfaces, and affordances. The way in which a book’s spine or a reading chair realign the positions of the back, eye, and hand suggests another type of structuring when reading electronically, within environments made of polymer, rare metals, and liquid crystal. How does one mold the human senses to fit such alien media? The history of electronic books ultimately attests to the process of trans-mediation, contested at the boundary of hardware—paper or silicon—and software—body and code.",
"container-title": "The Unfinished Book",
"language": "en",
"note": "ISBN: 9780198830801\nDOI: 10.1093/oxfordhb/9780198830801.013.22",
"publisher": "Oxford University Press",
"title": "Reading Platforms: A Concise History of the Electronic Book",
"URL": "https://www.oxfordhandbooks.com/view/10.1093/oxfordhb/9780198830801.001.0001/oxfordhb-9780198830801-e-22",
"author": [
{
"family": "Tenen",
"given": "Dennis Yi"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
28
]
]
},
"issued": {
"date-parts": [
[
"2020",
12,
7
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/MVPASSA6",
"type": "webpage",
"title": "Digital Book History",
"URL": "https://digitalbookhistory.com/",
"author": [
{
"family": "Trettien",
"given": "Whitney"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
28
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/TUMJLRER",
"type": "book",
"abstract": "A standalone React/Redux web application for for presenting unique printed books and manuscripts in digital facsimile.",
"genre": "JavaScript",
"note": "original-date: 2018-10-10T23:37:20Z",
"source": "GitHub",
"title": "wtrettien/manicule",
"URL": "https://github.com/wtrettien/manicule",
"author": [
{
"family": "Trettien",
"given": "Whitney"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
28
]
]
},
"issued": {
"date-parts": [
[
"2020",
10,
21
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/6KYMVR5H",
"type": "post-weblog",
"container-title": "Scholarly Digital Editions",
"title": "Scholarly Digital Editions: The history of Collate",
"title-short": "Scholarly Digital Editions",
"URL": "http://scholarlydigitaleditions.blogspot.com/2014/09/the-history-of-collate.html",
"author": [
{
"family": "Robinson",
"given": "Peter"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2014",
9,
29
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/ZS42LBRZ",
"type": "article-journal",
"abstract": "This article describes programs (collectively named COLLATE) developed for the simultaneous machine collation of forty-four manuscripts of two Old Norse poems. Preparatory programs dealt with transcription of the manuscripts into electronic form, and with normalisation of their spelling. This yielded a complete frequency table of all variant spellings found in the manuscriptsThe collation itself was designed to cope with widelyvarying texts, with marginalia and with readings tagged as dubious Each reading in each ms was compared in turn with a notional master, and all variants there found in all mss were then tabulated against one another Critical here were two special functions which identified scribal variants and sense variants The accuracy so achieved was estimated at above 99%, including transcription errors. There is no theoretical limit to the number of mss and the length of text COLLATE could process A second article discusses techniques developed to analyse COLLATE's output",
"container-title": "Literary and Linguistic Computing",
"DOI": "10.1093/llc/4.2.99",
"ISSN": "0268-1145",
"issue": "2",
"journalAbbreviation": "Literary and Linguistic Computing",
"page": "99-105",
"source": "Silverchair",
"title": "The Collation and Textual Criticism of Icelandic Manuscripts (1): Collation",
"title-short": "The Collation and Textual Criticism of Icelandic Manuscripts (1)",
"URL": "https://doi.org/10.1093/llc/4.2.99",
"volume": "4",
"author": [
{
"family": "Robinson",
"given": "P. M. W."
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"1989",
1,
1
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/8DY8NFLI",
"type": "book",
"abstract": "XI, 369 p. : 24 cm; Papers of the 2nd Symposium on the Uses of Computers in Literary Research, held under the auspices of the University of Edinburgh's Institute for Advanced Studies in the Humanities; Met lit. opg. en index",
"ISBN": "978-0-85224-232-2",
"language": "eng",
"number-of-pages": "394",
"publisher": "Edinburgh : Edinburgh University Press",
"source": "Internet Archive",
"title": "The computer and literary studies",
"URL": "http://archive.org/details/computerliterary0000unse",
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"1973"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/UXFK8SAZ",
"type": "article-journal",
"container-title": "Digital Humanities Quarterly",
"ISSN": "1938-4122",
"issue": "3",
"journalAbbreviation": "DHQ",
"title": "Reassessing the locus of normalization in machine-assisted collation",
"volume": "014",
"author": [
{
"family": "Birnbaum",
"given": "David J."
},
{
"family": "Spadini",
"given": "Elena"
}
],
"issued": {
"date-parts": [
[
"2020",
9,
25
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/E9JMNKZK",
"type": "article-journal",
"abstract": "Interoperability is the key term within the framework of the European-funded research project Interedition,1 whose aim is ‘to encourage the creators of tools for textual scholarship to make their functionality available to others, and to promote communication between scholars so that we can raise awareness of innovative working methods’. The tools developed by Interedition’s ‘Prototyping’ working group were tested by other research teams, which formulate strategic recommendations. To this purpose, the Centre for Manuscript Genetics (University of Antwerp), the Huygens Institute for the History of the Netherlands (The Hague), and the University of Würzburg have been working together within the framework of Interedition. One of the concrete results of collaboration is the development and fine-tuning of the text collation tool CollateX.2 In this article, we would like to investigate how the architecture of a digital archive containing modern manuscripts can be designed in such a way that users can autonomously collate textual units of their choice with the help of the collation tool CollateX and thus decide for themselves how efficiently this digital architecture functions—as an archive, as a genetic dossier, or as an edition. The first part introduces CollateX and its internal concepts and heuristics as a tool for digitally supported collation. How this tool can be integrated in the infrastructure of an electronic edition is discussed in part two. The third and final part examines the possibility of deploying CollateX for the collation of modern manuscripts by means of a test case: the Beckett Digital Manuscript Project (www.beckettarchive.org).",
"container-title": "Digital Scholarship in the Humanities",
"DOI": "10.1093/llc/fqu007",
"ISSN": "2055-7671",
"issue": "3",
"journalAbbreviation": "Digital Scholarship in the Humanities",
"page": "452-470",
"source": "Silverchair",
"title": "Computer-supported collation of modern manuscripts: CollateX and the Beckett Digital Manuscript Project",
"title-short": "Computer-supported collation of modern manuscripts",
"URL": "https://doi.org/10.1093/llc/fqu007",
"volume": "30",
"author": [
{
"family": "Haentjens Dekker",
"given": "Ronald"
},
{
"family": "Hulle",
"given": "Dirk",
"non-dropping-particle": "van"
},
{
"family": "Middell",
"given": "Gregor"
},
{
"family": "Neyt",
"given": "Vincent"
},
{
"family": "Zundert",
"given": "Joris",
"non-dropping-particle": "van"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2015",
9,
1
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/9IAIELNG",
"type": "thesis",
"abstract": "The purpose of the dissertation is to investigate from a theoretical and methodological perspective the different tools that allow automated collation, and study the application of such tools to the creation of a digital critical edition in the context of Classical literature. By doing so, the dissertation examines many foundational but often neglected components of the philological method, such as the definition and wider implication of transcription, reading, and variant. The goal is to provide a reflection on automated collation and the theoretical as well as practical challenges it poses: what is automated collation? How is it performed, and what are the main differences with manual collation? What are the benefits of automated collation? Why has it not been widely adopted yet, despite the fact that it was developed to help scholars? How to process the results of collation programmes? As a case study, a Classical Latin text has been used to test automated collation and to compare the various existing tools. The method I follow in this dissertation is to apply automated collation to a selected text, the Declamations of Calpurnius Flaccus. To this purpose, the manuscript tra-dition, as well as the editio princeps, have been entirely transcribed. Afterwards, the transcriptions have been collated with different collation programmes. The results of the collation with different programmes have been examined and compared, as well as the possibilities offered to scholarly editors for visualising and further processing those results. The content of the thesis is divided into two distinct parts, from theory to practice: a first part discusses the relevance of collation in the broader context of critical editing, introduces automated collation and its various issues, as well as the implications of automated collation for key concepts such as 'witnesses', 'readings' and 'variants'; the second part of the thesis will describe the practical work on the text of Calpurnius Flaccus with automated collation programmes and the visualisation tool that was created to examine the collation results. Each part comprises a short introduction and conclusion which summarises its content and its outcome. In the process of editing a text, the collation of manuscripts and previous scholarly editions is a necessary and fundamental step. The work leading to the production of a critical edition is divided into two phases: the recension of witnesses, followed by the constitution of the text (Chiesa 2002). The editor, therefore, starts with the recension by gathering all the witnesses, manuscripts or editions, bearing a version of the edited text. Collation is the next step: comparing those witnesses to find the differences (or variants) between the versions. Finally, the editor analyses the variants in order to determine the genealogical relationships of the witnesses, if possible, and present those relationships in the form of a stemma codicum. The stemma's purpose is to help the editor produce a text 'as close as possible to the original' (Maas 1958, 1), and decide which variants are accepted as authorial and which variants are rejected as errors that got included in the tradition by the copyists of the manuscripts. After the recension, the editor prepares a critical text, selecting variant readings and making emendations when necessary. Collation is important because it is one of the first stages in the editing process and the data gathered during collation forms the basis upon which the editor will later make critical decisions (Whittaker 1991). Collation is performed because witnesses of a text always contain variant readings, and the editor needs to be in possession of all the alternatives in order to establish the text. As complete collations are not usually published, this represents a regrettable loss of information, especially given the amount of time and effort invested in collation by the editors (West 1973, 63). While collation is an essential part of textual criticism, collation is also a long, tedious and error-prone activity and needs to be checked more than once. For this reason, a new method was created: automated collation, which takes advantage of computers in order to compare texts and find variant readings. Scholars have been developing collation tools since the 1960s, but with limited success at first: what was considered a fairly mechanical process turned out to be more sophisticated than expected (Hockey 2000, 125). Since the pioneering work of Dearing (1962) and Froger (1968), automated collation has been studied for decades and has been constantly improved. In the past 50 years, close to thirty tools have been devised in order to obtain a collation with the support of increasingly complex algorithms. How does automated collation work? To simplify, the tools for automated collation take, as an input, a transcription of each witness that needs to be compared. The transcriptions are then aligned with each other through an alignment algorithm. The task of collation seems to highly benefit from the application of computing methods. The advantages offered by computing methods are various: consistency in the comparison, possibility to reuse the material in order to add new manuscripts to the collation, a common format to share collation data with other scholars. The results of automated collation can also be formatted for further processing, such as building a stemma with a different program or creating a digital scholarly edition. However, automated collation is not completely accepted by the community of scholars, nor is its method fully understood. In 1973, at the beginning of automated collation, scepticism was understandable because of the many restrictions of early tools such as the small number of witnesses collated, or the limitation to comparing lines of poetry. Faced with those limitations, West (1973, 71) stated that 'the time has not yet come when manuscripts can be collated automatically'. Forty years later, in spite of huge technical improvements, opinions have not really changed, to the point that Reeve declared that he was not convinced by computer methods, especially for large manuscript traditions (Reeve 2011, 393). But the computer is indeed supposed to be better at handling large amounts of data, and with more consistency than a human being. In fact, when dealing with large traditions, it is not always possible to sort out the relationships between manuscripts and draw a stemma by hand, yet editors are not keen on turning to electronic methods. Some of the obstacles to the wide adoption of automated collation seem connected to a general misunderstanding. There is a fear that somehow the computer will eventually be replacing the editor, and that editors will lose their right to apply their individual judgement to the texts. Greetham (2007, 23) regrets, for instance, that the role of individual, subjective evaluation 'has not always been recognised, especially by those wishing to emphasise the \"scientific\" aspects of the field'. The importance of individual judgement, and the role of the editor compared to the role of the computer, can be closely related to the black box issue (Sculley and Pasanek 2008): if scholars do not understand what a piece of software does, how can they trust that the programme did not deprive them of making certain choices or applying their own judgement? In the course of my PhD I had several exchanges with colleagues in the field of Classics which have highlighted several underlying misunderstandings on either side. For instance I was once told in an email that 'automated collation is impossible, because computers cannot read manuscripts'. This statement does not recognise, for instance, the fact that computers are collating from transcriptions made by scholars. From this point of view, transcription and collation are strictly connected activities. This statement, however, illustrates perfectly the main tension between traditional, manual collation and automated collation: the difference of methodol-ogy. The confusion arises here because the full transcription of manuscripts is not a part of the traditional heuristics in textual criticism. A generalised lack of tools and guidelines for the production of digital scholarly editions may also explain why automated collation is not the solution of choice.",
"genre": "Ph.D.",
"language": "eng",
"note": "Accepted: 2018",
"publisher": "King's College London",
"source": "ethos.bl.uk",
"title": "Automated collation and digital editions : from theory to practice",
"title-short": "Automated collation and digital editions",
"URL": "https://kclpure.kcl.ac.uk/portal/en/theses/automated-collation-and-digital-editions(1ffc4aa0-5ad5-4ca1-869a-ab3d528eed4a).html",
"author": [
{
"family": "Nury",
"given": "Elisa Laure"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2018"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/KMPENB9J",
"type": "book",
"abstract": "This book provides an up-to-date, coherent and comprehensive treatment of digital scholarly editing, organized according to the typical timeline and workflow of the preparation of an edition: from the choice of the object to edit, the editorial work, post-production and publication, the use of the published edition, to long-term issues and the ultimate significance of the published work. The author also examines from a theoretical and methodological point of view the issues and problems that eme",
"language": "en",
"publisher": "Routledge",
"title": "Digital Scholarly Editing: Theories, Models and Methods",
"title-short": "Digital Scholarly Editing",
"URL": "https://www.routledge.com/Digital-Scholarly-Editing-Theories-Models-and-Methods/Pierazzo/p/book/9780367598600",
"author": [
{
"family": "Pierazzo",
"given": "Elena"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2015"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/6MFJJA3T",
"type": "book",
"abstract": "Coding and collation Workshop Repository",
"genre": "Jupyter Notebook",
"note": "original-date: 2016-05-30T19:58:36Z",
"publisher": "DiXiT-eu",
"source": "GitHub",
"title": "DiXiT-eu/collatex-tutorial",
"URL": "https://github.com/DiXiT-eu/collatex-tutorial",
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2021",
5,
29
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/N2ZR7XEA",
"type": "webpage",
"abstract": "DiXiT workshop coding collation",
"title": "Code and Collation Workshop",
"URL": "https://sites.google.com/site/dixitcodingcollation/",
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/DGENC268",
"type": "book",
"abstract": "Introduction to automatic collation - Programme doctoral en études numériques - University of Lausanne - 24 & 25.09.2020",
"genre": "Jupyter Notebook",
"note": "original-date: 2020-01-29T14:31:24Z",
"publisher": "automaticCollationLausanne2020",
"source": "GitHub",
"title": "automaticCollationLausanne2020/Materials",
"URL": "https://github.com/automaticCollationLausanne2020/Materials",
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2020",
10,
1
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/APBTCW2U",
"type": "webpage",
"title": "Introduction to automatic collation",
"URL": "https://automaticcollationlausanne2020.github.io/",
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/WBHJNGQ6",
"type": "thesis",
"genre": "Doctoral",
"publisher": "Universiteit Antwerpen",
"title": "Mapping Invention in Writing: Digital Infrastructure and the Role of the Genetic Editor",
"URL": "https://repository.uantwerpen.be/docman/irua/e959d6/155676.pdf",
"author": [
{
"family": "Bleeker",
"given": "Elli"
}
],
"issued": {
"date-parts": [
[
"2017"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/YW949VBQ",
"type": "book",
"abstract": "As more and more of our cultural heritage migrates into digital form and as increasing amounts of literature and art are created within digital environments, it becomes more important than ever before for us to understand how the medium affects the text. The expert contributors to this volume provide a clear, engrossing and accessible insight into how the texts we read and study are created, shaped and transmitted to us. They outline the theory behind studying texts in many different forms and offer case studies demonstrating key methodologies underlying the vital processes of editing and presenting texts. Through their multiple perspectives they demonstrate the centrality of textual scholarship to current literary studies of all kinds and express the sheer intellectual excitement of a crucial scholarly discipline entering a new phase of its existence.",
"language": "en",
"note": "ISBN: 9781139044073 9780521514101 9780521730297\npublisher: Cambridge University Press\nDOI: 10.1017/CCO9781139044073",
"publisher": "Cambridge University Press",
"title": "The Cambridge Companion to Textual Scholarship",
"URL": "https://www.cambridge.org/core/books/cambridge-companion-to-textual-scholarship/F0454F48FD8494FAA1A0CC0AC2EB5D17",
"editor": [
{
"family": "Freistat",
"given": "Neil"
},
{
"family": "Flanders",
"given": "Julia"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
25
]
]
},
"issued": {
"date-parts": [
[
"2013",
5
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/CTI639V7",
"type": "webpage",
"language": "en-US",
"title": "Studying Early Printed Books 1450–1800: A Practical Guide",
"title-short": "Studying Early Printed Books 1450–1800",
"URL": "https://www.earlyprintedbooks.com/studying-early-printed-books-1450-1800-a-practical-guide/",
"author": [
{
"family": "Werner",
"given": "Sarah"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
16
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/VIB8XECE",
"type": "webpage",
"title": "The Ark of Studies",
"URL": "http://www.brepols.net/Pages/ShowProduct.aspx?prod_id=IS-9782503575230-1",
"author": [
{
"family": "Harrison",
"given": "Thomas"
},
{
"family": "Cevolini (ed.)",
"given": "A."
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
14
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/P6H5HR6U",
"type": "book",
"abstract": "A new examination of mass digitization as an emerging sociopolitical and sociotechnical phenomenon that alters the politics of cultural memory.\n Today, all of us with internet connections can access millions of digitized cultural artifacts from the comfort of our desks. Institutions and individuals add thousands of new cultural works to the digital sphere every day, creating new central nexuses of knowledge. How does this affect us politically and culturally? In this book, Nanna Bonde Thylstrup approaches mass digitization as an emerging sociopolitical and sociotechnical phenomenon, offering a new understanding of a defining concept of our time. Arguing that digitization has become a global cultural political project, Thylstrup draws on case studies of different forms of mass digitization—including Google Books, Europeana, and the shadow libraries Monoskop, lib.ru, and Ubuweb—to suggest a different approach to the study of digital cultural memory archives. She constructs a new theoretical framework for understanding mass digitization that focuses on notions of assemblage, infrastructure, and infrapolitics. Mass digitization does not consist merely of neutral technical processes, Thylstrup argues, but of distinct subpolitical processes that give rise to new kinds of archives and new ways of interacting with the artifacts they contain. With this book, she offers important and timely guidance on how mass digitization alters the politics of cultural memory to impact our relationship with the past and with one another.",
"language": "en",
"note": "publisher: The MIT Press",
"publisher": "The MIT Press",
"title": "The Politics of Mass Digitization",
"URL": "https://mitpress.mit.edu/books/politics-mass-digitization",
"author": [
{
"family": "Thylstrup",
"given": "Nanna Bonde"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
23
]
]
},
"issued": {
"date-parts": [
[
"2019"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/KAH6JN69",
"type": "article-journal",
"container-title": "Milton Studies",
"issue": "1",
"page": "1-47",
"title": "Damaged Type and Areopagitica's Clandestine Printers",
"URL": "https://hcommons.org/deposits/objects/hc:32388/datastreams/CONTENT/content",
"volume": "62",
"author": [
{
"family": "Warren",
"given": "Christopher N"
},
{
"family": "Wiliams",
"given": "Pierce"
},
{
"family": "Rijhwani",
"given": "Shruti"
},
{
"family": "G'Sell",
"given": "Max"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
22
]
]
},
"issued": {
"date-parts": [
[
"2020"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/7MQ8DVSM",
"type": "article-journal",
"abstract": "Digital humanities research has focused primarily on the analysis of texts. This emphasis stems from the availability of technology to study digitized text. Optical character recognition allows researchers to use keywords to search and analyze digitized texts. However, archives of digitized sources also contain large numbers of images. This article shows how convolutional neural networks (CNNs) can be used to categorize and analyze digitized historical visual sources. We present three different approaches to using CNNs for gaining a deeper understanding of visual trends in an archive of digitized Dutch newspapers. These include detecting medium-specific features (separating photographs from illustrations), querying images based on abstract visual aspects (clustering visually similar advertisements), and training a neural network based on visual categories developed by domain experts. We argue that CNNs allow researchers to explore the visual side of the digital turn. They allow archivists and researchers to classify and spot trends in large collections of digitized visual sources in radically new ways.",
"container-title": "Digital Scholarship in the Humanities",
"DOI": "10.1093/llc/fqy085",
"ISSN": "2055-7671",
"issue": "1",
"journalAbbreviation": "Digital Scholarship in the Humanities",
"page": "194-207",
"source": "Silverchair",
"title": "The visual digital turn: Using neural networks to study historical images",
"title-short": "The visual digital turn",
"URL": "https://doi.org/10.1093/llc/fqy085",
"volume": "35",
"author": [
{
"family": "Wevers",
"given": "Melvin"
},
{
"family": "Smits",
"given": "Thomas"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
22
]
]
},
"issued": {
"date-parts": [
[
"2020",
4,
1
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/SDLTT5VJ",
"type": "book",
"abstract": "A Wall Street Journal Best Business Book of 2012 A Kirkus Reviews Best Book of 2012 In this revealing account of how the digital universe exploded in the aftermath of World War II, George Dyson illuminates...",
"edition": "Penguin",
"language": "en-US",
"title": "Turing's Cathedral",
"title-short": "Turing's Cathedral by George Dyson",
"URL": "https://www.penguinrandomhouse.com/books/44425/turings-cathedral-by-george-dyson/",
"author": [
{
"family": "Dyson",
"given": "George"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
18
]
]
},
"issued": {
"date-parts": [
[
"2012"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/JTFYLCPY",
"type": "book",
"abstract": "Inside the technological objects, geophysical locations, and material resources that network the world",
"language": "en",
"publisher": "University of Illinois Press",
"title": "Signal Traffic: Critical Studies of Media Infrastructures",
"title-short": "UI Press | Edited by Lisa Parks and Nicole Starosielski | Signal Traffic",
"URL": "https://www.press.uillinois.edu/books/catalog/26bxm4qd9780252039362.html",
"author": [
{
"family": "Starosielski",
"given": "Nicole"
},
{
"family": "Parks",
"given": "Lisa"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
11
]
]
},
"issued": {
"date-parts": [
[
"2015"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/7CGVZURQ",
"type": "article-journal",
"container-title": "Studies in Bibliography",
"page": "129-161",
"title": "\"The Eternal Verities Verified\": Charlton Hinman and the Roots of Mechanical Collation",
"URL": "http://xtf.lib.virginia.edu/xtf/view?docId=StudiesInBiblio/uvaBook/tei/sibv053.xml;chunk.id=vol053.04;toc.depth=1;toc.id=vol053.04;brand=default",
"volume": "53",
"author": [
{
"family": "Smith",
"given": "Steven Escar"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
18
]
]
},
"issued": {
"date-parts": [
[
"2000"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/Q4R78LH4",
"type": "article-journal",
"abstract": "Sustained dialogue and collaborative work between art historians and technologists has a great deal to offer both fields of inquiry. In this paper, we propose that effective collaborations in Digital Art History, however, require more than just a humanist and a technologist to succeed. Indeed, we find that there are four different roles that need to be filled: Humanist, Technologist, Data Steward, and Catalyst. Our approach is predicated on a few foundational convictions. First, we believe that art historians and technologists occupy distinct problem spaces. As we will outline, although these realms are distinct they are not of necessity in opposition to one another. Second, we bring to the fore essential questions about the status and function of data that must be addressed by the collaborators: what sort of data are being used? What counts as effective and compelling analysis of this data? Third, we recognize that there are certain structural impediments to collaboration, such as different reward structures and motivations. Finally, we assert that each of the participants must have a deep commitment to their particular engagement with the project, which requires sustained effort and the maintenance of disciplinary respect. We firmly believe that the most effective of these projects will not be based on technological solutionism, but rather will be founded in the most humanistic of tools: empathy and respect.",
"container-title": "International Journal for Digital Art History",
"DOI": "10.11588/dah.2018.3.34297",
"ISSN": "2363-5401",
"issue": "3",
"journalAbbreviation": "DAH",
"language": "en",
"note": "number: 3",
"source": "journals.ub.uni-heidelberg.de",
"title": "A Role-Based Model for Successful Collaboration in Digital Art History",
"URL": "https://journals.ub.uni-heidelberg.de/index.php/dah/article/view/34297",
"author": [
{
"family": "Langmead",
"given": "Alison"
},
{
"family": "Berg-Fulton",
"given": "Tracey"
},
{
"family": "Lombardi",
"given": "Thomas"
},
{
"family": "Newbury",
"given": "David"
},
{
"family": "Nygren",
"given": "Christopher"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
18
]
]
},
"issued": {
"date-parts": [
[
"2018",
7,
27
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/VVH26VSW",
"type": "webpage",
"title": "An Introduction to IIIF",
"URL": "https://resources.digirati.com/iiif/an-introduction-to-iiif/",
"author": [
{
"family": "Crane",
"given": "Tom"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
18
]
]
},
"issued": {
"date-parts": [
[
"2017",
3
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/ZBPBXSVW",
"type": "webpage",
"abstract": "The cloud lies under the ocean. Thin cables about as big around as a garden hose traverse the Earth's oceans carrying all our intercontinental internet data.",
"container-title": "The Conversation",
"language": "en",
"title": "In our Wi-Fi world, the internet still depends on undersea cables",
"URL": "http://theconversation.com/in-our-wi-fi-world-the-internet-still-depends-on-undersea-cables-49936",
"author": [
{
"family": "Starosielski",
"given": "Nicole"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
18
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/NH5BP7H9",
"type": "article-journal",
"container-title": "Programming Historian",
"language": "en",
"source": "programminghistorian.org",
"title": "Introduction to the Principles of Linked Open Data",
"URL": "https://programminghistorian.org/en/lessons/intro-to-linked-data",
"author": [
{
"family": "Blaney",
"given": "Jonathan"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
17
]
]
},
"issued": {
"date-parts": [
[
"2017",
5,
7
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/WWRULLA2",
"type": "motion_picture",
"abstract": "An introduction to linked open data for libraries, archives, and museums (LODLAM) for my MLIS graduate students. Transcript: https://www.dropbox.com/s/uvhu6gcobn5...\n\nImage Sources & Further Reading\n\nHooland, Seth van, and Ruben Verborgh. Linked Data for Libraries, Archives and Museums: How to Clean, Link and Publish Your Metadata. U.S. edition. Chicago: Neal-Schuman, an imprint of the American Library Association, 2014.\n\nThe LODLAM Unconferences. “The LODLAM Unconferences.” Accessed December 8, 2020. https://lodlam.net/.\n\nMeindertsma, Joep. “What’s the Best RDF Serialization Format?” Ontola.io, June 29, 2019. http://ontola.io/blog/rdf-serializati....\n\n“American Art Collaborative Linked Open Data Initiative | Smithsonian American Art Museum.” Accessed December 8, 2020. https://americanart.si.edu/about/amer....\n\nVladimir Alexiev. \"Museum Linked Open Data: Ontologies, Datasets, Projects.\" http://dipp.math.bas.bg/images/2018/0....\n\nLincoln, Matthew. “Using SPARQL to Access Linked Open Data.” Edited by Fred Gibbs. The Programming Historian, no. 4 (November 24, 2015). https://doi.org/10.46430/phen0047.\n\nBlaney, Jonathan. “Introduction to the Principles of Linked Open Data.” Programming Historian, May 7, 2017. https://programminghistorian.org/en/l....",
"dimensions": "18:43",
"source": "YouTube",
"title": "What is Linked Open Data?",
"URL": "https://www.youtube.com/watch?v=VZBpFiLbi-Y",
"author": [
{
"literal": "Miriam Posner"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
17
]
]
},
"issued": {
"date-parts": [
[
"2021",
1,
7
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/2BA5L4LL",
"type": "webpage",
"title": "Linked Data - Design Issues",
"URL": "https://www.w3.org/DesignIssues/LinkedData.html",
"author": [
{
"family": "Berners-Lee",
"given": "Tim"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
17
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/CS6INDJF",
"type": "book",
"publisher": "University of Pennsylvania Press",
"title": "Bitstreams",
"URL": "https://www.upenn.edu/pennpress/book/16248.html",
"author": [
{
"family": "Kirschenbaum",
"given": "Matthew"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
10
]
]
},
"issued": {
"date-parts": [
[
"2021"
]
]
}
},
{
"id": "http://zotero.org/groups/4293914/items/YY298KQ6",
"type": "webpage",
"title": "Weaving the Web",
"URL": "https://www.w3.org/People/Berners-Lee/Weaving/Overview.html",
"author": [
{
"family": "Berners-Lee",
"given": "Tim"
}
],
"accessed": {
"date-parts": [
[
"2021",
6,
16
]