-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11933.xml
4126 lines (4126 loc) · 259 KB
/
11933.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.masoodwarren">beinecke.masoodwarren</recordid>
<otherrecordid localtype="BIB">7293190</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Masood Ali Wilbert Warren Papers </titleproper>
<titleproper localtype="filing">Warren (Masood Ali Wilbert) Papers</titleproper>
<author>Matthew Daniel Mason</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>December 2020</date>
<num>JWJ MSS 32</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">7293190</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-5, 8-11, 16</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 6-7 (Oversize), 12-15 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="56">56</num> digital files.</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>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:58:46-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:58</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11933" level="collection">
<did>
<unittitle>Masood Ali Wilbert Warren Papers</unittitle>
<unitid>JWJ MSS 32</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>22.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">16 boxes</physdesc>
<unitdatestructured altrender="1933-1988" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_18721578425f6904fe67a3186b8c8a9a">The Masood Ali Wilbert Warren Papers includes sketchbooks, sketches, and drawings created by Warren, 1933-1988, as well as photographs and collected material.</abstract>
<origination label="Source">
<corpname relator="bsl" rules="local" source="local">
<part localtype="agent_corporate_entity">William Reese Co.</part>
</corpname>
</origination>
<origination label="Source">
<corpname relator="bsl" rules="local" source="local">
<part localtype="agent_corporate_entity">Waiting for Godot Books</part>
</corpname>
</origination>
<origination label="Creator">
<persname relator="art" rules="local" source="local">
<part localtype="agent_person">Warren, Masood Ali Wilbert, 1907-1995</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_9f90ca8daf953bfe28dcc2cdf0cdbc2b">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<bioghist id="aspace_5df12643ae99cf2ef347e9d7d0e7417b">
<head>Masood Ali Wilbert Warren (1907-1995)</head>
<p>Masood Ali Wilbert Warren was an African American artist. He was born in Notasulga, Alabama, of African and American Indian heritage. Warren attended the Art Students League in New York from 1932 to 1935 and earned a Bachelor of Fine Arts in mural painting from New York University in 1939. He also served in the United States Army as a staff artist in the Special Services and the Quartermaster Corps during and after World War II, 1941-1950. After living briefly in Los Angeles, California, Warren was recalled into active service by the United States Air Force during the Korean War as a combat artist serving from 1953 to 1955. He returned to Los Angeles and then completed a Master of Fine Arts with a major in sculpture at Temple University in 1961. His work exhibited at the National Academy of Design and National Art Club.</p>
</bioghist>
<userestrict id="aspace_9dda35f42589f905283d913b60018a70">
<head>Conditions Governing Use</head>
<p>The Masood Ali Wilbert Warren Papers 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>
<acqinfo id="aspace_469f602d8c023529df7e443ac2e7d1f7">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Waiting for Godot Books on the James Weldon Johnson Memorial Collection of Negro Arts & Letters Fund, 2006.</p>
<p>Purchased from William Reese Co. (Swann Galleries', New York, sales, including: sale 2189, 8 Oct 2009, lot 26 and lot 27, on the James Weldon Johnson Memorial Collection of Negro Arts & Letters Fund, 2009.</p>
<p>Purchased from William Reese Co. (Swann Galleries', New York, sales, including: sale 2204, 2010 Feb 25, lot 137; sale 2293, 2011 Mar 10, lot 158, lot 159 and lot 160; sale 2408, 2016 March 31, lot 143) on the Edwin J. Beinecke Book Fund, 2009-2011</p>
<p>Purchased from William Reese Co. (Swann Galleries', New York, sale 2342, 2014 March 27) on the Alfred Z. Baker, Jr. Fund, 2014.</p>
</acqinfo>
<prefercite id="aspace_3df2509088f3f61cc8f6f85c0faedf67">
<head>Preferred Citation</head>
<p>Masood Ali Wilbert Warren Papers. James Weldon Johnson Memorial Collection in the Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_46df2f85c29200e306588a34f9df6c53">
<head>Scope and Contents</head>
<p>The Masood Ali Wilbert Warren Papers includes sketchbooks, sketches, and drawings created by Warren, 1933-1988. It chiefly consists of approximately 4,450 sketches from life, including street portraits in Harlem, New York City, 1933-1940 and 1968-1988, and of military personnel, 1941-1943 and 1953-1956, as well as 74 drawings of military personnel and others from 1953 to 1956. The collection also includes photographs of Warren alone and with others as well as with examples of his artwork, 1941-1965, and a small group of collected material.</p>
</scopecontent>
<processinfo id="aspace_9a6de18779852038286e1e622df0888f">
<head>Processing Information</head>
<p>This material is open for research. Early descriptions of the collection, 2006-2007, identified only seven sketchbooks with a collection title, "Masood Ali Wilbert Warren, Sketches of African American Women and Men." In 2020, accessions acquired since 2007 combined with the seven sketchbooks to form the " Masood Ali Wilbert Warren Papers."</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001790"
source="lcsh">
<part localtype="topical">African American art</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001794"
source="lcsh">
<part localtype="topical">African American artists</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">African American soldiers</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85002006"
source="lcsh">
<part localtype="topical">African Americans in art</part>
</subject>
<subject source="local">
<part localtype="topical">Art</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85007576"
source="lcsh">
<part localtype="topical">Art, Black</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85008286"
source="lcsh">
<part localtype="topical">Artists, Black</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85014706"
source="lcsh">
<part localtype="topical">Blacks in art</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Korean War, 1950-1953</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">World War, 1939-1945</part>
<part localtype="geographic">United States</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<geogname source="local">
<part localtype="geographic">Harlem (New York, N.Y.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008116322"
source="lcsh">
<part localtype="geographic">New York (N.Y.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300189808" source="aat">
<part localtype="genre_form">Figures (representations)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027354" source="aat">
<part localtype="genre_form">Sketchbooks</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300015617" source="aat">
<part localtype="genre_form">Sketches</part>
</genreform>
<corpname>
<part localtype="agent_corporate_entity">United States. Army</part>
<part localtype="genre_form">Pictorial works</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3250437"
id="aspace_afef630ee2b92f70ac27f1d3d5dfb702"
level="series">
<did>
<unittitle>Sketchbooks and Sketches</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1933–1988" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2cf214ff73694b51da89192c5d1e590a">
<head>Scope and Contents</head>
<p>Sketchbooks and sketches from life by Warren including street portraits in Harlem, New York City, 1933-1940, and of military personnel, 1941-1943 and 1953-1956. This component consists of 48 sketchbooks or portions of sketchbooks and 27 groups of sketches that combine to encompass approximately 4,450 sketches.</p>
</scopecontent>
<arrangement id="aspace_25a6d6f6b1da2762d881f6b43f2f2907">
<head>Arrangement</head>
<p>Series I is arranged chronologically.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3250441"
id="aspace_023914da1ce758cab6cf27a4778396f7"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1933 March 13-May 25"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933-03-13">1933 March 13</fromdate>
<todate standarddate="1933-05-25">1933 May 25</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_023914da1ce758cab6cf27a4778396f7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_023914da1ce758cab6cf27a4778396f7_c2"
localtype="folder"
parent="aspace_023914da1ce758cab6cf27a4778396f7_c1">1</container>
</did>
<scopecontent id="aspace_c4bb540ee847b374c2818c08b14e108d">
<head>Scope and Contents</head>
<p>Volume with a red back board and the manuscript title, "Fine Arts, Life Drawings" on the pastedown, and lacking the front board, consists of 158 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of animals including cats, ducks, parrots, and swans.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250442"
id="aspace_50007afe351ca28d6e182d502e98c3a1"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1934? March 22-May 17"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934-03-22">1934 March 22</fromdate>
<todate standarddate="1934-05-17">1934 May 17</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_50007afe351ca28d6e182d502e98c3a1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_50007afe351ca28d6e182d502e98c3a1_c2"
localtype="folder"
parent="aspace_50007afe351ca28d6e182d502e98c3a1_c1">2</container>
</did>
<scopecontent id="aspace_0034a864e3c9a3d784d10dc8746114ea">
<head>Scope and Contents</head>
<p>Volume with tan boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Drawing and Sketches" and "Vol. 5" on the front pastedown sheet, consists of 90 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of birds and cityscapes.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250443"
id="aspace_1ee0f619690d0aaf1e8ea567ec3b67f5"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1934 August 7-September 30"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934-08-07">1934 August 7</fromdate>
<todate standarddate="1934-09-30">1934 September 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_1ee0f619690d0aaf1e8ea567ec3b67f5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1ee0f619690d0aaf1e8ea567ec3b67f5_c2"
localtype="folder"
parent="aspace_1ee0f619690d0aaf1e8ea567ec3b67f5_c1">3</container>
</did>
<scopecontent id="aspace_7761182fe3214817a820f929e4d3b610">
<head>Scope and Contents</head>
<p>Volume with mauve boards and the manuscript title, "Sketches, Anatomy Studies, Animal, Nature" on the front flyleaf and "Vol. 8" on the front pastedown, consists of 135 pencil sketches. Images include figure sketches of men, including African American baseball players, and women in seated and standing poses as well as representations of animals including ducks, geese, and storks.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250454"
id="aspace_92b4ef62ffe213cb194b6853624366d1"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1934 October 1-31"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934-10-01">1934 October 1</fromdate>
<todate standarddate="1934-10-31">1934 October 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371219 /locations/9"
containerid="39002094487965"
encodinganalog="custom box [vertical octavo, 1" wide]"
id="aspace_92b4ef62ffe213cb194b6853624366d1_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_59407507c907fb7e5c35c464b6f386c2">
<head>Scope and Contents</head>
<p>Volume with blue boards with imprinted title, "Notes," and the manuscript title, "Life Sketches" on the front flyleaf and "Vol. 12" on the front pastedown, consists of 121 pencil sketches. Images include figure sketches of men, including Japanese Americans, and women in seated and standing poses as well as representations of animals including ducks, geese, a lion, and squirrels.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250444"
id="aspace_d9e85c8e95a89b5f82a394166e9e1426"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1934 October 16, 1935? June 9-28"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934-10-16">1934 October 16</fromdate>
<todate standarddate="1935-06-28">1935 June 28</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_d9e85c8e95a89b5f82a394166e9e1426_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d9e85c8e95a89b5f82a394166e9e1426_c2"
localtype="folder"
parent="aspace_d9e85c8e95a89b5f82a394166e9e1426_c1">4</container>
</did>
<scopecontent id="aspace_7a9c8b55a53b3763285d1f44f86eeb44">
<head>Scope and Contents</head>
<p>Volume with blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Book, A Sketch of Ears 'de vive,' Life Sketches, Illustrating the Fine Arts" on the front flyleaf and "Vol. 9" on the front pastedown, consists of 110 pencil sketches. Images include details of ears created on October 16, 1934, and remaining sketches created June 9-28, 1935?, of figure sketches of men and women in seated and standing poses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250445"
id="aspace_856ceb91d53f56c5be96b9b7e915fa3e"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1935 April 13-May 27"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935-04-13">1935 April 13</fromdate>
<todate standarddate="1935-05-27">1935 May 27</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_856ceb91d53f56c5be96b9b7e915fa3e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_856ceb91d53f56c5be96b9b7e915fa3e_c2"
localtype="folder"
parent="aspace_856ceb91d53f56c5be96b9b7e915fa3e_c1">5</container>
</did>
<scopecontent id="aspace_4ab74367f95b901c0c9ba0d7c036423d">
<head>Scope and Contents</head>
<p>Volume with light blue boards with imprinted title, "The Scribble-in Book," and manuscript title, "Life Sketches" on the front flyleaf and "Vol. 14 on the front pastedown, consists of 127 pencil sketches. Images chiefly consist of figure sketches of men and women, as well as occasional images of children and representations of birds, American bison, dogs, and squirrels. Includes a manuscript summary description of Elizabeth Jennings Graham (1827-1901) and <title>
<part>Jennings v. Third Ave. Railroad</part>
</title> (1855), which led to the desegregation of the Third Avenue Railroad Company in New York City.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250446"
id="aspace_d49f504d3fb2f5abe5b1392b71272d72"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1935 August 19-September 16"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935-08-19">1935 August 19</fromdate>
<todate standarddate="1935-09-16">1935 September 16</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_d49f504d3fb2f5abe5b1392b71272d72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d49f504d3fb2f5abe5b1392b71272d72_c2"
localtype="folder"
parent="aspace_d49f504d3fb2f5abe5b1392b71272d72_c1">6</container>
</did>
<scopecontent id="aspace_ec23aa2ad4db645f29485b79459f3c5e">
<head>Scope and Contents</head>
<p>Volume with light blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches, Fine Arts" and "Vol. 17" on the front pastedown, consists of 120 pencil sketches. Images include figure sketches of men and women in seated and standing poses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250447"
id="aspace_f6b2912f6c65a70499edb034fc94f40b"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1935 September 17-October 31"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935-09-17">1935 September 17</fromdate>
<todate standarddate="1935-10-31">1935 October 31</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_f6b2912f6c65a70499edb034fc94f40b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f6b2912f6c65a70499edb034fc94f40b_c2"
localtype="folder"
parent="aspace_f6b2912f6c65a70499edb034fc94f40b_c1">7</container>
</did>
<scopecontent id="aspace_64056c15f8ac47a806034361deedd841">
<head>Scope and Contents</head>
<p>Volume with red boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches, Nature" on the front flyleaf, consists of 115 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of a horse and a landscape.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250448"
id="aspace_6a84eddb93e7744f6c441e76dc08cfb4"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 May 1-June 23"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-05-01">1936 May 1</fromdate>
<todate standarddate="1936-06-23">1936 June 23</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_6a84eddb93e7744f6c441e76dc08cfb4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6a84eddb93e7744f6c441e76dc08cfb4_c2"
localtype="folder"
parent="aspace_6a84eddb93e7744f6c441e76dc08cfb4_c1">8</container>
</did>
<scopecontent id="aspace_9009115bd66f0d680146dad0b8d788e3">
<head>Scope and Contents</head>
<p>Volume with green boards with imprinted title, "The Scribbldor," and the manuscript title, "Quick Sketches, 'Artistic Beauty,' Realism" on the front flyleaf and "Vol. 10" on the front pastedown, consists of 146 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of dogs, horses, and landscapes.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250449"
id="aspace_6ac57a95d6462c278e974344586112db"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 May 22-27"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-05-22">1936 May 22</fromdate>
<todate standarddate="1936-05-27">1936 May 27</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_6ac57a95d6462c278e974344586112db_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6ac57a95d6462c278e974344586112db_c2"
localtype="folder"
parent="aspace_6ac57a95d6462c278e974344586112db_c1">9</container>
</did>
<scopecontent id="aspace_303b8f60c1a6c4280f238f547f2a61c8">
<head>Scope and Contents</head>
<p>Volume with green boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Sketches from Life" on the front flyleaf and "Vol. 21" on the front pastedown, consists of 110 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of lions.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250450"
id="aspace_654bd369bf9a7c2a1e7e629cb398facf"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 May 29-June 3"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-05-29">1936 May 29</fromdate>
<todate standarddate="1936-06-03">1936 June 3</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_654bd369bf9a7c2a1e7e629cb398facf_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_654bd369bf9a7c2a1e7e629cb398facf_c2"
localtype="folder"
parent="aspace_654bd369bf9a7c2a1e7e629cb398facf_c1">10</container>
</did>
<scopecontent id="aspace_9291398f21c680ba988778a8929d5f61">
<head>Scope and Contents</head>
<p>Volume with green boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Fine Arts" and "Vol. 22" on the front pastedown, consists of 108 pencil sketches. Images include figure sketches of men and women in seated and standing poses. Includes a portrait of Fats Waller performing at the Apollo Theater at Harlem, Manhattan, New York City, on June 3, 1936.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250451"
id="aspace_0ad4820c057f0321bef5442300e17b12"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 June 3-16"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-06-03">1936 June 3</fromdate>
<todate standarddate="1936-06-16">1936 June 16</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_0ad4820c057f0321bef5442300e17b12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0ad4820c057f0321bef5442300e17b12_c2"
localtype="folder"
parent="aspace_0ad4820c057f0321bef5442300e17b12_c1">11</container>
</did>
<scopecontent id="aspace_521296890061ea83bcd12fa43ea85e81">
<head>Scope and Contents</head>
<p>Volume with blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Fine Arts" on the front flyleaf and "Vol. 23" on the front pastedown, consists of 108 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as a view of Columbus Circle, New York City.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250452"
id="aspace_61337e9630d5c35f74ce87f47979f351"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 June 16-July 6"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-06-16">1936 June 16</fromdate>
<todate standarddate="1936-07-06">1936 July 6</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_61337e9630d5c35f74ce87f47979f351_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_61337e9630d5c35f74ce87f47979f351_c2"
localtype="folder"
parent="aspace_61337e9630d5c35f74ce87f47979f351_c1">12</container>
</did>
<scopecontent id="aspace_7d3b671f0e87834e07fcb6abe7e2e560">
<head>Scope and Contents</head>
<p>Volume with light blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches" on the front flyleaf, consists of 108 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as a representation of a horse.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250453"
id="aspace_22027112150a0c70f26fbe6bcb68be75"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1936 July 7-August 5"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936-07-07">1936 July 7</fromdate>
<todate standarddate="1936-08-05">1936 August 5</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371218 /locations/9"
containerid="39002094487957"
encodinganalog="card box (8d 5h 12w)"
id="aspace_22027112150a0c70f26fbe6bcb68be75_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_22027112150a0c70f26fbe6bcb68be75_c2"
localtype="folder"
parent="aspace_22027112150a0c70f26fbe6bcb68be75_c1">13</container>
</did>
<scopecontent id="aspace_5ae2e0017857b1db0f8024da623aa122">
<head>Scope and Contents</head>
<p>Volume with red boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Nature, Life Sketches" on the front flyleaf, consists of 107 pencil sketches. Images include figure sketches of men and women in seated and standing poses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250455"
id="aspace_cec04940d073fcb3276ea9ca5c8e4542"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1937 June 1-15"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937-06-01">1937 June 1</fromdate>
<todate standarddate="1937-06-15">1937 June 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_cec04940d073fcb3276ea9ca5c8e4542_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_cec04940d073fcb3276ea9ca5c8e4542_c2"
localtype="folder"
parent="aspace_cec04940d073fcb3276ea9ca5c8e4542_c1">14</container>
</did>
<scopecontent id="aspace_e38111d07a53ebef5ad47243fcfd0167">
<head>Scope and Contents</head>
<p>Volume with blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches" on the front flyleaf, consists of 109 pencil sketches. Images include figure sketches of men, women, and children in seated and standing poses as well as representations of bears, hippopotamus, and waterfowl.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250456"
id="aspace_1e4b01e4dc85c192eca5dbdbd8993a8b"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1938 February 7-24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-02-07">1938 February 7</fromdate>
<todate standarddate="1938-02-24">1938 February 24</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_1e4b01e4dc85c192eca5dbdbd8993a8b_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_1e4b01e4dc85c192eca5dbdbd8993a8b_c2"
localtype="folder"
parent="aspace_1e4b01e4dc85c192eca5dbdbd8993a8b_c1">15</container>
</did>
<scopecontent id="aspace_1fb9442489a5329a6e8e9c87019edea2">
<head>Scope and Contents</head>
<p>Volume with light blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches" on the front flyleaf, consists of 110 pencil sketches. Images include figure sketches of men and women in seated and standing poses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250457"
id="aspace_08686cf9ac6de5b01922b6f017728667"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1938 February 25-March 19"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938-02-25">1938 February 25</fromdate>
<todate standarddate="1938-03-19">1938 March 19</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_08686cf9ac6de5b01922b6f017728667_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_08686cf9ac6de5b01922b6f017728667_c2"
localtype="folder"
parent="aspace_08686cf9ac6de5b01922b6f017728667_c1">16</container>
</did>
<scopecontent id="aspace_c3dcb90daee7ef53d73b65b2f941a2f8">
<head>Scope and Contents</head>
<p>Volume with blue boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches" on the front flyleaf, consists of 109 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of horses.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250458"
id="aspace_687d931454486b8dc9af2eed0753aa6c"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1939 January 12-22"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939-01-12">1939 January 12</fromdate>
<todate standarddate="1939-01-22">1939 January 22</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_687d931454486b8dc9af2eed0753aa6c_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_687d931454486b8dc9af2eed0753aa6c_c2"
localtype="folder"
parent="aspace_687d931454486b8dc9af2eed0753aa6c_c1">17</container>
</did>
<scopecontent id="aspace_4d3d6769123933ae5c294b859bd34f3d">
<head>Scope and Contents</head>
<p>Volume with red boards and the manuscript title, "Life Sketches," on the flyleaf consists of 108 pencil sketches. Images include figure sketches of African American children, women, and men in seated and standing poses, as well as musicians playing violin, upright bass, flute, and piano.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250459"
id="aspace_97ea5029b0e4004931d468e1ddf103fd"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1939 May 30-June 20"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939-05-30">1939 May 30</fromdate>
<todate standarddate="1939-06-20">1939 June 20</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_97ea5029b0e4004931d468e1ddf103fd_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_97ea5029b0e4004931d468e1ddf103fd_c2"
localtype="folder"
parent="aspace_97ea5029b0e4004931d468e1ddf103fd_c1">18</container>
</did>
<scopecontent id="aspace_b88b8f0872450362a243a4892d893eb6">
<head>Scope and Contents</head>
<p>Volume with green boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Sketches from Life" on the front flyleaf, consists of 105 pencil sketches. Images include figure sketches of men and women in seated and standing poses. Includes a portrait of picketer against the New Far East Service during a labor action by teamsters and longshoreman supported by the American Federation of Labor and Congress of Industrial Organizations.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250460"
id="aspace_4328f0875357b1574fc1305ee3378574"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1939 October 13-28"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939-10-13">1939 October 13</fromdate>
<todate standarddate="1939-10-28">1939 October 28</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_4328f0875357b1574fc1305ee3378574_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_4328f0875357b1574fc1305ee3378574_c2"
localtype="folder"
parent="aspace_4328f0875357b1574fc1305ee3378574_c1">19</container>
</did>
<scopecontent id="aspace_3cc8c480f2c73d4529838b888ed36cab">
<head>Scope and Contents</head>
<p>Volume with orange boards with imprinted title, "The Scribble-in Book," and manuscript title, "Life Sketches" on the front flyleaf, consists of 110 pencil sketches. Images chiefly consist of figure sketches of African American men and women, as well as occasional images of children, white men, and representations of an American bison, a cat, and a tiger.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250461"
id="aspace_98707a0ea0b22a1410e30da671e55da5"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1939 November 27-1940 December 12"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939-11-27">1939 November 27</fromdate>
<todate standarddate="1940-12-12">1940 December 12</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_98707a0ea0b22a1410e30da671e55da5_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_98707a0ea0b22a1410e30da671e55da5_c2"
localtype="folder"
parent="aspace_98707a0ea0b22a1410e30da671e55da5_c1">20</container>
</did>
<scopecontent id="aspace_f3ed472eef19828a86dc043aab59a9e4">
<head>Scope and Contents</head>
<p>Volume with red boards with imprinted title, "Recipes," and the manuscript title, "Life Sketches" on the front pastedown sheet, consists of 127 pencil sketches. Images of American bison, bears, cheetahs, a giraffe, lions, a peacock, and tigers as well as landscapes, likely at Central Park, New York City.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250462"
id="aspace_00ab8717c21b93e8fb45eb8ed9b3b84b"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 April 19-27"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-04-19">1940 April 19</fromdate>
<todate standarddate="1940-04-27">1940 April 27</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_00ab8717c21b93e8fb45eb8ed9b3b84b_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_00ab8717c21b93e8fb45eb8ed9b3b84b_c2"
localtype="folder"
parent="aspace_00ab8717c21b93e8fb45eb8ed9b3b84b_c1">21</container>
</did>
<scopecontent id="aspace_117fca606f7eee904a70ddd2ffd5405e">
<head>Scope and Contents</head>
<p>Volume with orange boards and the manuscript title, "Sketches from Life," on the flyleaf consists of 113 crayon sketches. Images include figure sketches of African American women and men in seated and standing poses, as well as men playing tennis and operating a jackhammer.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250463"
id="aspace_ed9b69d0cc8c50f51dd6a3b8c3f09141"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 May 3-8" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-05-03">1940 May 3</fromdate>
<todate standarddate="1940-05-08">1940 May 8</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_ed9b69d0cc8c50f51dd6a3b8c3f09141_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ed9b69d0cc8c50f51dd6a3b8c3f09141_c2"
localtype="folder"
parent="aspace_ed9b69d0cc8c50f51dd6a3b8c3f09141_c1">22</container>
</did>
<scopecontent id="aspace_f6ebdef0ef2abfcb1f66e9e1b8ad01f1">
<head>Scope and Contents</head>
<p>Volume with green boards and the manuscript title, "Life Sketches," on the flyleaf consists of 109 crayon sketches. Images include figure sketches of African American children, women, and men in seated and standing poses, as well as women on a picket line and a man sleeping.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250464"
id="aspace_36d8275cb4fe767d2cdd1d69621f460a"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 June 15-27"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-06-15">1940 June 15</fromdate>
<todate standarddate="1940-06-27">1940 June 27</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_36d8275cb4fe767d2cdd1d69621f460a_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_36d8275cb4fe767d2cdd1d69621f460a_c2"
localtype="folder"
parent="aspace_36d8275cb4fe767d2cdd1d69621f460a_c1">23</container>
</did>
<scopecontent id="aspace_99727604082d692ace12550469264d47">
<head>Scope and Contents</head>
<p>Volume with purple boards with imprinted title, "The Scribble-in Book," and the manuscript title, "Life Sketches" on the front flyleaf, consists of 107 pencil sketches. Images include figure sketches of men and women in seated and standing poses as well as representations of an American bison, dogs, lions, and a tiger.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250465"
id="aspace_b109dd194ea3fae9754c064f5ee29c15"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 July 6-14"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-07-06">1940 July 6</fromdate>
<todate standarddate="1940-07-14">1940 July 14</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_b109dd194ea3fae9754c064f5ee29c15_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_b109dd194ea3fae9754c064f5ee29c15_c2"
localtype="folder"
parent="aspace_b109dd194ea3fae9754c064f5ee29c15_c1">24</container>
</did>
<scopecontent id="aspace_f4e108d8a99d076fb92ae69f62ca0e2a">
<head>Scope and Contents</head>
<p>Volume with red boards and the manuscript title, "Life Sketches," on the flyleaf consists of 106 pencil sketches. Images include figure sketches of African American children, women, and men in seated and standing poses, as well as a man sleeping and a Chinese man. Sketches of animals in the volume depict dogs, cats, a tiger, and a horse.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250466"
id="aspace_f9d5b5f2a99fccd5f6e71443a7b68d02"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 August 1-August 7"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-08-01">1940 August 1</fromdate>
<todate standarddate="1940-08-07">1940 August 7</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371220 /locations/9"
containerid="39002094487973"
encodinganalog="card box (8d 5h 12w)"
id="aspace_f9d5b5f2a99fccd5f6e71443a7b68d02_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_f9d5b5f2a99fccd5f6e71443a7b68d02_c2"
localtype="folder"
parent="aspace_f9d5b5f2a99fccd5f6e71443a7b68d02_c1">25</container>
</did>
<scopecontent id="aspace_cdca9026154178057b2ce21bf7fa5e40">
<head>Scope and Contents</head>
<p>Volume with brown boards with imprinted title, "The Scribble-in Book," and manuscript title, "Sketches from Life" on the front flyleaf, consists of 97 pencil sketches. Images chiefly consist of figure sketches of African American men and women, as well as occasional images of children and white men. Also representations of dogs and monkeys. Volume lacks three pages.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3250467"
id="aspace_d4bd550f6eb86fbfc3d646fd07342f46"
level="file">
<did>
<unittitle>Sketchbook</unittitle>
<unitdatestructured altrender="1940 October 31-November 19"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940-10-31">1940 October 31</fromdate>
<todate standarddate="1940-11-19">1940 November 19</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/371221 /locations/9"
containerid="39002094487981"
encodinganalog="card box (8d 5h 12w)"
id="aspace_d4bd550f6eb86fbfc3d646fd07342f46_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_d4bd550f6eb86fbfc3d646fd07342f46_c2"
localtype="folder"
parent="aspace_d4bd550f6eb86fbfc3d646fd07342f46_c1">26</container>
</did>
<scopecontent id="aspace_b65823d59aca7d580c4bbef12ec7dae1">
<head>Scope and Contents</head>