-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path531.xml
1339 lines (1339 loc) · 69.9 KB
/
531.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.macfall">beinecke.macfall</recordid>
<otherrecordid localtype="BIB">11860356</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Haldane Macfall Collection
</titleproper>
<titleproper localtype="filing">Macfall (Haldane) Collection</titleproper>
<author>Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>January 2014</date>
<num>GEN MSS 1079</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">11860356</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-14</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:01:39-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/531" level="collection">
<did>
<unittitle>Haldane Macfall collection</unittitle>
<unitid>GEN MSS 1079</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.26</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes</physdesc>
<unitdatestructured altrender="1894-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894">1894</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_37dc82e983254a7fab2f9cb20d705abc">The collection includes manuscripts, typescripts, and proofs of books, essays, and plays including a biography of Aubrey Beardsley, and the novels The Splendid Wayfaring and The Three Students; originals and proofs of illustrations, bookplates, and cover art; correspondence; and contracts with publishers. The majority of the correspondence consists of Macfall's outgoing letters to Earl E. Fisk, a British-born book collector, anthologist and insurance agent who lived in Green Bay, Wisconsin, and assisted Macfall in placing his books with American publishers.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Macfall, Haldane, 1860-1928</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f40985d0e4791c778dd54f3a2c796335">
<head>Immediate Source of Acquisition</head>
<p>The majority of the collection was purchased on the Francis O. Matthiessen Fund, 1956. Other items were the gifts of Mrs. Leon Godchaux, 1948, and E. L. Sampter, 1956.</p>
</acqinfo>
<accessrestrict id="aspace_0c5c693c4b9360e8a690914fbd9b3f2b">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_afd7fd8333d5584e0685a7ba549e3c0d">
<head>Conditions Governing Use</head>
<p>The Haldane Macfall Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<processinfo id="aspace_0c38f5c7d9fa3b8ef1bd9c0a8cec1da8">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit. This collection received a basic level of processing, including rehousing, in 2014.</p>
<p>The collection is comprised of material formerly classed as MS Vault Macfall.</p>
<p>The finding aid for this collection is largely compiled from individual catalog cards that were created at or around the time of receipt by the library. Information from the catalog cards was repurposed in the finding aid in accordance with current archival descriptive standards. Some catalog cards, copies of which are filed with the collection, include more detailed descriptions of individual items and/or provenance notes. Descriptions for items not represented by catalog cards were derived from accession records, folder labels, or other available descriptive material.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<relatedmaterial id="aspace_86296d9ae6834d31e081b1bf3da33277">
<head>Associated Materials</head>
<p>Earl Fisk Papers (GEN MSS 342). Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<bioghist id="aspace_5b8d634e4dd397d795a72f1d568ea71b">
<head>Haldane Macfall (1860-1928)</head>
<p>Chambers Haldane Cooke Macfall was a British military officer who authored works on art history and criticism, several novels, and numerous essays. He designed and illustrated many of his own works as well as bookplates and cover art, and exhibited works at the Royal Academy. He was married to Mabel Plumridge Macfall. He died in 1928.</p>
</bioghist>
<scopecontent id="aspace_a6020efc52fd1320f36f86163895e6a0">
<head>Scope and Contents</head>
<p>The collection includes manuscripts, typescripts and proofs of books, essays, and plays including <title localtype="simple" render="italic">
<part>Aubrey Beardsley</part>
</title>, <title localtype="simple" render="italic">
<part>The Splendid Wayfaring</part>
</title>, and <title localtype="simple" render="italic">
<part>The Three Students</part>
</title>; original and proofs of illustrations, bookplates, and cover art; correspondence; and contracts with publishers. The majority of the correspondence consists of Macfall's outgoing letters to Earl E. Fisk, a British-born book collector, anthologist and insurance agent who lived in Green Bay, Wisconsin, and assisted Macfall in placing his books with American publishers.</p>
</scopecontent>
<arrangement id="aspace_aaa09abba2c7438b3f0f7a8e0b8f358c">
<head>Arrangement</head>
<p>Arranged by type of material.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009858"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85064414"
source="lcsh">
<part localtype="topical">Illustration of books</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Illustrators</part>
<part localtype="geographic">England</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Bookplates</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Drawings (visual works)</part>
<part localtype="temporal">20th Century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">England</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Illustrators</part>
<part localtype="geographic">England</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Fisk, Earl E. (Earl Ellsworth), 1892-1954</part>
</persname>
<persname>
<part localtype="agent_person">Macfall, Haldane, 1860-1928</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Macfall, Mabel Plumridge</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/172116"
id="ref11"
level="file">
<did>
<unittitle>Books</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/172117"
id="ref12"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Aubrey Beardsley</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>10</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="[1927?]-1928, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16432 /locations/9"
containerid="39002104930061"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_c229528fc4a0cf40dd21b34bc8616738">
<head>Scope and Contents</head>
<p>Two corrected typescripts, one with proofs of the illustrations inserted; carbon typescript of a critique of the book with autograph manuscript notations; and press clippings relating to the publication.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172118"
id="ref15"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Beautiful Children</part>
</title>
</unittitle>
<unitdatestructured altrender="[1909?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1909">[1909?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16432 /locations/9"
containerid="39002104930061"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f6a29be2d061f9ec6946fd1005eaab57">
<head>Scope and Contents</head>
<p>Page proofs, corrected.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172119"
id="ref17"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Book of Lovat Claud Fraser</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16433 /locations/9"
containerid="39002104930079"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_86ff739c522d882de11beaadbd90bc1f">
<head>Scope and Contents</head>
<p>Two autograph manuscript drafts, one with proofs of illustrations inserted.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172120"
id="ref20"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The French Pastellists</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16433 /locations/9"
containerid="39002104930079"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_6ce92210ac67e75be817562518f77604">
<head>Scope and Contents</head>
<p>Autograph manuscript of the foreword accompanied by corrected page proofs of the book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172121"
id="ref23"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Ibsen: The Man, His Art, and His Significance</part>
</title>
</unittitle>
<unitdatestructured altrender="1906" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">1906</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16433 /locations/9"
containerid="39002104930079"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_bd9abb8ba6bedfc1171a55542f81dbd3">
<head>Scope and Contents</head>
<p>Typescript, carbon, with manuscript corrections.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172122"
id="ref25"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Modern Genius</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="[1911]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1911">[1911]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16434 /locations/9"
containerid="39002104930087"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_ed45f3df8cdd8179c52b4da345639e81">
<head>Scope and Contents</head>
<p>Autograph manuscript of the title page and foreword, accompanied by page proofs of the book, volume 8 in his multi-volume work, <title localtype="simple" render="italic">
<part>A History of Painting</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172123"
id="ref28"
level="file">
<did>
<unittitle>"The Patchouli Decadents"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16434 /locations/9"
containerid="39002104930087"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
<scopecontent id="aspace_1aec13f1df80f7ccb84b9716d41a9752">
<head>Scope and Contents</head>
<p>Autograph manuscript.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172124"
id="ref30"
level="file">
<did>
<unittitle>"Sin"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16435 /locations/9"
containerid="39002104930095"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_3dbabe756335d9b381aba12e9d8b9a1f">
<head>Scope and Contents</head>
<p>Typescript carbon with manuscript corrections.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172125"
id="ref32"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Songs of the Immortals</part>
</title> [volume of poems edited by Haldane Macfall]</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="[1925-1926]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1926">1926</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16435 /locations/9"
containerid="39002104930095"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
<scopecontent id="aspace_571f4471a323e89c1b55d78a53d9f435">
<head>Scope and Contents</head>
<p>Paste-up dummy, corrected, and illustrations.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172126"
id="ref35"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Splendid Wayfaring</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>8</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="circa 1913-1920, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1920">1920</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16436 /locations/9"
containerid="39002104930103"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
<scopecontent id="aspace_db961f5bffefbc9bfdd1fa32ddb34195">
<head>Scope and Contents</head>
<p>Autograph manuscript "scheme" of the book prepared for Earl E. Fisk; carbon typescript preface, with manuscript corrections; typescript, carbon preface by Frank Brangwyn with manuscript copy in the hand of Earl E. Fisk; "A Personal Note on Haldane MacFall," by Edward Gordon Craig, typescript, corrected, accompanied by two carbon typescripts and galley proofs; typescript of the book with manuscripts corrections; paste-up dummy of proofs with illustrations; typescript, carbon, with manuscript corrections of the preface; and a copy of the book interleaved with clippings and correspondence.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172127"
id="ref38"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Three Students</part>
</title>
</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1925-1926" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1926">1926</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16437 /locations/9"
containerid="39002104930111"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
<scopecontent id="aspace_58f23b36fd483981c20b34bf8e652ada">
<head>Scope and Contents</head>
<p>Typescript, carbon, with manuscript corrections, bound with a photograph of his drawing for the endpaper for the first American edition (1926); and two typescripts with manuscript corrections.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172128"
id="ref41"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Three Students</part>
</title> (continued)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_73caa385584be693d7277ff9f6e98cdb">
<head>Scope and Contents</head>
<p>Typescripts and proofs of a preface, corrected, by Earl E. Fisk; two trial book covers; and a scrapbook of clippings, reviews and correspondence concerning the book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172129"
id="ref44"
level="file">
<did>
<unittitle>"The World Chaos"</unittitle>
<unitdatestructured altrender="1926-1928, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
<scopecontent id="aspace_f091dbb4dba608b5f00c5d6460f0d203">
<head>Scope and Contents</head>
<p>Typescript with manuscript corrections; accompanied by press clippings on Mussolini and the Scopes trial.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/172130"
id="ref46"
level="file">
<did>
<unittitle>Essays</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/172131"
id="ref47"
level="file">
<did>
<unittitle>"Art and Life," autograph manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172132"
id="ref48"
level="file">
<did>
<unittitle>"Babette," typescript, corrected</unittitle>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172133"
id="ref49"
level="file">
<did>
<unittitle>"The Blood Toll," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172134"
id="ref50"
level="file">
<did>
<unittitle>"Christ's Mass or Neitzsche's?," autograph manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172135"
id="ref51"
level="file">
<did>
<unittitle>"The Deaf Prophet of Prussia," autograph manuscript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16438 /locations/9"
containerid="39002104930129"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172136"
id="ref52"
level="file">
<did>
<unittitle>"The Matinee Girl," typescript corrected</unittitle>
<unitdatestructured altrender="[1906?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1906">[1906?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172137"
id="ref53"
level="file">
<did>
<unittitle>"Molly," typescript with manuscript corrections</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172138"
id="ref54"
level="file">
<did>
<unittitle>"Pictures for Pence," typescript, with manuscript corrections</unittitle>
<unitdatestructured altrender="1912" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912">1912</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172139"
id="ref55"
level="file">
<did>
<unittitle>"Purification of the Unlicked Cub," two typescripts, corrected, with two fragmentary typescripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172140"
id="ref56"
level="file">
<did>
<unittitle>"The Sentimental Ostler," typescript with manuscript corrections</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172141"
id="ref57"
level="file">
<did>
<unittitle>"The Theatre and the Puritan," autograph manuscript address to the Players Club with bound manuscript, "The Puritan and the Theatre"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172142"
id="ref58"
level="file">
<did>
<unittitle>"The Third Man," by "Hal Dane," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172143"
id="ref59"
level="file">
<did>
<unittitle>"The Typewriter Girl," typescript corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172144"
id="ref60"
level="file">
<did>
<unittitle>"Notes for an Address Upon the Ultimate Significance of Art," autograph manuscipt</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172145"
id="ref61"
level="file">
<did>
<unittitle>Miscellaneous essay and prose writings, autograph manuscripts</unittitle>
<unitdatestructured altrender="1912-1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/172146"
id="ref62"
level="file">
<did>
<unittitle>Volumes containing clippings of essays by Haldane Macfall</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/172147"
id="ref63"
level="file">
<did>
<unittitle>"Essays by H. M."</unittitle>
<unitdatestructured altrender="1913-1927" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1927">1927</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172148"
id="ref64"
level="file">
<did>
<unittitle>"Various Essays"</unittitle>
<unitdatestructured altrender="1909-1923" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1909">1909</fromdate>
<todate standarddate="1923">1923</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16439 /locations/9"
containerid="39002104930137"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172149"
id="ref65"
level="file">
<did>
<unittitle>"Various Essays of the Imagination"</unittitle>
<unitdatestructured altrender="1906-1912" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1906">1906</fromdate>
<todate standarddate="1912">1912</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16440 /locations/9"
containerid="39002104930145"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/172150"
id="ref66"
level="file">
<did>
<unittitle>Playscripts</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/172151"
id="ref67"
level="file">
<did>
<unittitle>"The Discriminators," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16440 /locations/9"
containerid="39002104930145"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172152"
id="ref68"
level="file">
<did>
<unittitle>"The Fear of Robert Clive," two typescripts, corrected</unittitle>
<unitdatestructured altrender="1896" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1896">1896</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16440 /locations/9"
containerid="39002104930145"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172153"
id="ref69"
level="file">
<did>
<unittitle>"The Three Students," typescript, corrected; with bound typescript carbon, corrected with typescript and manuscript notes laid in</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1907" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1907">1907</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16440 /locations/9"
containerid="39002104930145"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/172154"
id="ref71"
level="file">
<did>
<unittitle>Manuscript and typescript notes and writings by Haldane Macfall and Earl E. Fisk concerning a Macfall bibliography</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16440 /locations/9"
containerid="39002104930145"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172155"
id="ref72"
level="file">
<did>
<unittitle>Scrapbook volumes</unittitle>
</did>
<scopecontent id="aspace_3dfddd79b1bb8d9792d35f6051928d7f">
<head>Scope and Contents</head>
<p>Volumes containing press clippings, notes, and other ephemera relating to Macfall's writings.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/172156"
id="ref73"
level="file">
<did>
<unittitle>"Beware the German's Peace!"</unittitle>
<unitdatestructured altrender="1911-1918" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1911">1911</fromdate>
<todate standarddate="1918">1918</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16441 /locations/9"
containerid="39002104930152"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172157"
id="ref74"
level="file">
<did>
<unittitle>"Concerning <title localtype="simple" render="italic">
<part>The Masterfolk</part>
</title>"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16441 /locations/9"
containerid="39002104930152"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172158"
id="ref75"
level="file">
<did>
<unittitle>"The Wooings of Jezebel Pettyfer"</unittitle>
<unitdatestructured altrender="1913-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16441 /locations/9"
containerid="39002104930152"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/172159"
id="ref77"
level="file">
<did>
<unittitle>Art Work</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/172160"
id="ref78"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Pursuasions to Joy</part>
</title> by Earl E. Fisk</unittitle>
<unitdatestructured altrender="[1925-1926?]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1926">1926</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16442 /locations/9"
containerid="39002104930160"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
<scopecontent id="aspace_3807781e8d494e2e99d6d8b54688711e">
<head>Scope and Contents</head>
<p>Paste-up dummy of proofs with drawings by Haldane Macfall.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/172161"
id="ref80"
level="file">
<did>
<unittitle>Proofs of designs and cover title pages of books published by J.C. & E.C. Jack</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16442 /locations/9"
containerid="39002104930160"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172162"
id="ref81"
level="file">
<did>
<unittitle>Trial bindings and cover designs for <title localtype="simple" render="italic">
<part>The Wooing of Jezebel Pettyfer</part>
</title> and <title localtype="simple" render="italic">
<part>Poet's Country</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/16442 /locations/9"
containerid="39002104930160"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/172163"
id="ref82"
level="file">
<did>