-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path554.xml
3511 lines (3511 loc) · 207 KB
/
554.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.mondrian">beinecke.mondrian</recordid>
<otherrecordid localtype="BIB">11912446</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Piet Mondrian Papers
</titleproper>
<titleproper localtype="filing">Mondrian (Piet) Papers</titleproper>
<author>by 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>2014</date>
<num>GEN MSS 1102</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">11912446</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-6, 7-8 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="13">13</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="93">93</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:03:24-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:03</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/554" level="collection">
<did>
<unittitle>Piet Mondrian papers</unittitle>
<unitid>GEN MSS 1102</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<language langcode="dut">Dutch; Flemish</language>
<language langcode="ger">German</language>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>In English, Dutch, German, and French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.54</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">8 boxes</physdesc>
<unitdatestructured altrender="1881-1945" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881">1881</fromdate>
<todate standarddate="1945">1945</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a72cf8527ebbf931fa09b221bf047006">The collection consists of the writings and personal papers of Piet Mondrian, in addition to writings about him and the DeStijl movement. Most of Mondrian's writings were arranged and annotated by Harry Holtzman and Martin S. James for their volume The New Art, the New Life: the Complete Writings of Piet Mondrian (Boston: G. K. Hall, 1986). Some of the writings also were annotated by Mondrian's colleagues Michel Seuphor and Georges Vantongerloo. Personal papers include items such as Mondrian's birth certifications and passports, leases for his studios in Paris and New York, his United States war ration books, his will, and an undated drawing by Mondrian. Also present are a few autograph and typed letters, signed, from friends and colleagues in the arts.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Mondrian, Piet, 1872-1944</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Steiner, Rudolf, 1861-1925</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Doesburg, Theo van, 1883-1931</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_c0d61e109baba745025bcfac0352ca79">
<head>Immediate Source of Acquisition</head>
<p>Gift of Harry Holtzman, 1983-1985.</p>
</acqinfo>
<accessrestrict id="aspace_31af0e98541afa93fdfe3deeffdf1a66">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<altformavail id="aspace_50084e8f3d7ca475d3a9a5387cb43bfb">
<head>Existence and Location of Copies</head>
<p>Portions of the collection were microfilmed and appear on Beinecke Library Vault Films 889 and 2598.</p>
</altformavail>
<userestrict id="aspace_930c65956ff561a8a4aa359b3001f9a2">
<head>Conditions Governing Use</head>
<p>The Piet Mondrian 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>
<prefercite id="aspace_3be0e50eabf95cdffcd5612946f62dba">
<head>Preferred Citation</head>
<p>Piet Mondrian Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_bddb3b176d4d31e18bf31872afff2494">
<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.</p>
<p>The papers were arranged by Harry Holtzman and Martin S. James in preparation for their volume <title localtype="simple" render="italic">
<part>The New Art, the New Life: the Complete Writings of Piet Mondrian</part>
</title> (Boston: G. K. Hall, 1986). English translations of essay titles and numbers indicated in each entry refer to an inventory provided by Holtzman when he deposited the material at the library. Not all of the numbers have associated entries as some of the folders were empty when they arrived at the library. In addition, Holtzman 38 was returned to the donor on April 2, 1985.</p>
<p>This collection includes materials previously identified by the following call number: Uncat MS Vault 710.</p>
</processinfo>
<relatedmaterial id="aspace_6e38455fbcd15ee16e3fe65a48bad896">
<head>Associated Materials</head>
<p>Harry Holtzman Papers (GEN MSS 819).</p>
</relatedmaterial>
<bioghist id="aspace_2471e6fdae8c8e2a4295fafaacc52e83">
<head>Piet Mondrian (1872-1944)</head>
<p>Dutch artist, immigrated to the United States in 1940 and died in New York in 1944.</p>
</bioghist>
<scopecontent id="aspace_112c0c5e9bd74db2002f956a5a594cef">
<head>Scope and Contents</head>
<p>The collection consists of the writings and personal papers of Piet Mondrian, in addition to writings about him and the De Stijl movement. Most of Mondrian's writings were arranged and annotated by Harry Holtzman and Martin S. James for their volume <title localtype="simple" render="italic">
<part>The New Art, the New Life: the Complete Writings of Piet Mondrian</part>
</title> (Boston: G. K. Hall, 1986). Some of the writings also were annotated by Mondrian's colleagues Michel Seuphor and Georges Vantongerloo. Personal papers include items such as Mondrian's birth certifications and passport, leases for his studios in Paris and New York, his United States war ration books, and his will. Also present are a few autograph and typed letters, signed, from friends and colleagues in the arts, and an undated drawing by Mondrian. Along with the papers are publications by others that were owned by Mondrian, some with his autograph annotations, and issues of the journal <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>.</p>
</scopecontent>
<arrangement id="aspace_af2cc74437d97d6fb700be5182b02612">
<head>Arrangement</head>
<p>Organized into two series: I. Writings, 1917-1945. II. Personal Papers, 1881-1944.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Artists</part>
<part localtype="geographic">Netherlands</part>
</subject>
<subject source="local">
<part localtype="topical">Artists</part>
<part localtype="geographic">Netherlands</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009849"
source="lcsh">
<part localtype="topical">Authors, Dutch</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, Dutch</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh86003875"
source="lcsh">
<part localtype="topical">De Stijl (Art movement)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85090806"
source="lcsh">
<part localtype="topical">Neoplasticism</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Drawings (visual works)</part>
<part localtype="geographic">Netherlands</part>
<part localtype="temporal">20th Century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Legal documents</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">Netherlands</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Authors, Dutch</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Austin, Arthur Everett, 1900-1957</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Davis, Stuart, 1892-1964</part>
</persname>
<persname>
<part localtype="agent_person">Duchamp, Marcel, 1887-1968</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Eesteren, Cornelis van, 1897-1988</part>
</persname>
<persname>
<part localtype="agent_person">Holtzman, Harry, 1912-1987</part>
</persname>
<persname>
<part localtype="agent_person">James, Martin S.</part>
</persname>
<persname>
<part localtype="agent_person">Mondrian, Piet, 1872-1944</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Seuphor, Michel, 1901-1999</part>
</persname>
<persname source="local">
<part localtype="agent_person">Steiner, Rudolf, 1861-1925 (Verslag van de voordrachten)</part>
</persname>
<persname>
<part localtype="agent_person">Doesburg, Theo van, 1883-1931</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Vantongerloo, Georges, 1886-1965</part>
</persname>
<persname>
<part localtype="agent_person">Zethraeus, Agatha, 1872-1966</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Cercle et carré (Group)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Museum Folkwang Essen</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Société théosophique de France</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/184585"
id="ref13"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes</physdesc>
<unitdatestructured altrender="1917-1945" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1945">1945</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_3c4941f7b7454c8b7d36d376d68caa85">
<head>Arrangement</head>
<p>Series I is organized into three subseries: Essays, Partial Essays, and Notes.</p>
</arrangement>
<scopecontent id="aspace_45b85eb358f40ef1d262436cd7e8812b">
<head>Scope and Contents</head>
<p>The subseries Essays and Partial Essays hold writings by Mondrian in autograph manuscript, typescript, and printed versions. Material in the Notes subseries are sheets and scraps of paper, including the backs of envelopes and letters he had received in the mail, on which Mondrian jotted his thoughts and theories. The notes were grouped in themes or subjects and arranged by Harry Holtzman; they remain in that order, accompanied by his typed transcripts or photocopies of the transcripts, which were corrected and annotated.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/184586"
id="ref15"
level="subseries">
<did>
<unittitle>Essays</unittitle>
</did>
<arrangement id="aspace_30431beae577455d7d372400e5da9b6c">
<head>Arrangement</head>
<p>Arranged roughly chronologically.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/184587"
id="ref16"
level="file">
<did>
<unittitle>"De Nieuwe Beelding in de schilderkunst" [The New Plastic in Painting]</unittitle>
<unitdatestructured altrender="1917-1918" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1918">1918</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1-2</container>
</did>
<scopecontent id="aspace_03aef9cf2eeb185bb09970b1e355026f">
<head>Scope and Contents</head>
<p>A set of detached pages from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>: vol. 1, no. 1, p. 2-6, no. 2, p. 13-18, no. 3, p. 29-31, no. 4, p. 41-45, no. 5, p. 49-54, no. 7, p. 73-77, no. 8, p. 88-91, no. 9, p. 102-108, no. 10, p. 121-124, no. 11, p. 125-134, no. 12, p. 140-147, and vol. 2, no. 2:, p. 14-19), accompanied by undated photocopies.</p>
<p>Holtzman 1</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184588"
id="ref18"
level="file">
<did>
<unittitle>"Dialog von der neuen Gestaltung" [Dialogue on the New Plastic]</unittitle>
<unitdatestructured altrender="1919, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1919">1919, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">3-4</container>
</did>
<scopecontent id="aspace_b8dd0e71822b2bef71d28775570bd177">
<head>Scope and Contents</head>
<p>Manuscript in German, in an unknown hand, signed and dated by Mondrian, February 1919 (22 p.).</p>
<p>Second manuscript, also in German, in an unknown hand (10 p.).</p>
<p>Accompanied by undated photocopies.</p>
<p>Holtzman 2</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184589"
id="ref20"
level="file">
<did>
<unittitle>"Natuurlijke en abstracte realiteit" [Natural and Abstract Reality, 1919-1920]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">5</container>
</did>
<scopecontent id="aspace_0dd763f3ffd07fabe8625f8974cd9c77">
<head>Scope and Contents</head>
<p>Photocopies of <title localtype="simple" render="italic">
<part>De Stijl</part>
</title> vol. 2, no. 8, p. 85-89, no 9, p. 97-99, no. 10, p. 109-113, no. 11, p. 121-125, no. 12, p. 133-137; and vol. 3, no. 3, p. 15-19, no. 4, p. 27-31, no. 5, p. 41-44, no. 6, p. 54-56, no. 7, p. 58-60, no. 8, p. 65-69, no. 9, p. 73-76, no. 10, p. 81-84; annotated by Harry Holtzman and Martin James.</p>
<p>Holtzman 3</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184590"
id="ref22"
level="file">
<did>
<unittitle>"De Groote boulevards" [The Grand Boulevards]</unittitle>
<unitdatestructured altrender="1920 Mar 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-03-27">1920 Mar 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">6</container>
</did>
<scopecontent id="aspace_4cf553494bbc4cb0bd8236943a78d17d">
<head>Scope and Contents</head>
<p>Newspaper clippings from <title localtype="simple" render="italic">
<part>De Nieuwe Amsterdammer</part>
</title>, vol. 273.</p>
<p>Holtzman 4</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184591"
id="ref24"
level="file">
<did>
<unittitle>"Klein restaurant - Palmszondag" [Small Restaurant - Palm Sunday]</unittitle>
<unitdatestructured altrender="1920 Apr 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-04-12">1920 Apr 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">7</container>
<daoset altrender="/repositories/11/digital_objects/134668">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16087927"
identifier="oid:16087927"
linktitle="8 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16101264/full/!150,150/0/default.jpg"
identifier="oid:16087927"
linktitle="p. 1"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16087927"
identifier="oid:16087927"
linktitle="p. 1"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"Klein restaurant - Palmszondag" [Small Restaurant - Palm Sunday]</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_cc50d90591f0bb49db47ac2a0ac97350">
<head>Scope and Contents</head>
<p>Autograph manuscript, signed (8 p.); annotated by Martin James.</p>
<p>Holtzman 5</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184592"
id="ref26"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Le Néo-Plasticisme</part>
</title> [Neo-Plasticism: General Principle of Plastic Equivalence] (Paris: Editions de l'Effort Moderne Léonce Rosenberg, 1920)</unittitle>
<unitdatestructured altrender="1920" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920">1920</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">8</container>
</did>
<scopecontent id="aspace_5d5edf5e1a2aa1d6b4ee520c1e111809">
<head>Scope and Contents</head>
<p>Five copies and one extra front cover; copy 1 with autograph correction on page 6; copy 3 with autograph correction on page 14.</p>
<p>Holtzman 6</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184593"
id="ref28"
level="file">
<did>
<unittitle>"De 'Bruiteurs futuristes Italiens' en 'het' nieuwe in de muziek" [The "Italian Futurist Bruiteurs" and the "New" in Music]</unittitle>
<unitdatestructured altrender="1921" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921">1921</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">9</container>
</did>
<scopecontent id="aspace_2ede7cecda9f82c9d7edb16d6f2dd672">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>, vol. 4, no. 8 (August 1921), p. 113-120, and vol. 4, no. 9 (September 1921), p. 129-136; plates lacking.</p>
<p>Holtzman 7</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184594"
id="ref30"
level="file">
<did>
<unittitle>"Het Néo-plasticisme (de Nieuwe Beelding) en zijn (hare) realiseering in de muziek" [Neo-Plasticism and its Realization in Music]</unittitle>
<unitdatestructured altrender="1922" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922">1922</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">10</container>
</did>
<scopecontent id="aspace_eb1b1c34d526d63c012e2176ce4e4403">
<head>Scope and Contents</head>
<p>Detached leaves from<title localtype="simple" render="italic">
<part>De Stijl</part>
</title>, vol. 5, no. 1 (January 1922), p. 1-8, and no. 2 (February 1922), p. 1-8, with autograph annotations by Mondrian; plates lacking.</p>
<p>Holtzman 8A</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184595"
id="ref32"
level="file">
<did>
<unittitle>"La manifestation du néo-plasticisme dans la musique et les bruiteurs futuristes italiens"</unittitle>
<unitdatestructured altrender="1922" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922">1922</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">11</container>
</did>
<scopecontent id="aspace_c682ca030fab862837eab3b4c662aaa7">
<head>Scope and Contents</head>
<p>Detached leaves from <emph render="italic">La vie des lettres et des arts</emph> (Paris: 1922), p. 131-144; some annotations by Mondrian; numbers by Martin James.</p>
<p>Holtzman 8B</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184596"
id="ref34"
level="file">
<did>
<unittitle>"De realiseering van het Neo-plasticisme in verre toekomst en in de huidge architectuur" [The Realization of Neo-plasticism in the Distant Future and in Architecture Today]</unittitle>
<unitdatestructured altrender="1922" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922">1922</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">12</container>
</did>
<scopecontent id="aspace_7f55f6e8a339a13b570c1b73611c4501">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title> vol. 5, no. 4 (April 1922), p. 41-48, and vol. 5, no. 5 (May 1922), p. 65-72; autograph corrections by Mondrian.</p>
<p>Holtzman 9</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184597"
id="ref36"
level="file">
<did>
<unittitle>"Moet de schilderkunst minderwaardig zijn aan de bouwkunst?" [Is Painting Inferior to Architecture?]</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">13</container>
</did>
<scopecontent id="aspace_d39bb5a4a5dde8c4f73b50c31099d9dd">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>, vol. 6, no. 5 (1923), p. 61-64.</p>
<p>Holtzman 10</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184598"
id="ref38"
level="file">
<did>
<unittitle>"Het Neo-plasticisme"</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">14</container>
</did>
<scopecontent id="aspace_6ce8ef3e958903a29d429c23c21b1332">
<head>Scope and Contents</head>
<p>Manuscript in an unknown hand, with autograph corrections by Mondrian and pencil notes by Martin James (5 p.). On recto of p. 5: manuscript draft of a letter signed by Mondrian.</p>
<p>Autograph manuscript of a portion of the work (1 p.)</p>
<p>"Het Neo-plasticisme" in <title localtype="simple" render="italic">
<part>Merz</part>
</title>, vol. 6 (October 1923), p. 53-54; with autograph annotations by Mondrian.</p>
<p>Accompanied by a typed letter, signed, from Robert L. Herbert to Harry Holtzman (July 3, 1978) with a photocopy of an autograph essay by Mondrian (now in Katherine S. Dreier Papers (YCAL MSS 101), Box 24, folder 710).</p>
<p>Holtzman 11A</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184599"
id="ref40"
level="file">
<did>
<unittitle>"Die neue Gestaltung in der Musik und die futuristischen italienischen Bruitisten" [The Manifestation of Néo-plasticism in Music and the Italian Futurist Brutteurs]</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">15</container>
</did>
<scopecontent id="aspace_bce43c1378242c46234bfbb4930ddfbd">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>, vol. 6, no. 1 (March 1923), p. 1-9 and vol. 6, no. 2 (April 1923), p. 19-25), annotated in an unidentified hand.</p>
<p>Holtzman 11B</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184600"
id="ref42"
level="file">
<did>
<unittitle>"Geen Axioma maar beeldend principe" [No Axiom but Plastic Principle]</unittitle>
<unitdatestructured altrender="circa 1924" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924">circa 1924</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">16</container>
</did>
<scopecontent id="aspace_a276c257d375bd8865c263918dedaf3a">
<head>Scope and Contents</head>
<p>Manuscript in an unknown hand of English translation of (3p.), with photocopy of typescript with autograph annotations by Martin James.</p>
<p>Photocopy from <title localtype="simple" render="italic">
<part>DeStijl</part>
</title>, vol. 6, no. 6-7 (1924), p. 83-84.</p>
<p>Holtzman 12</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184601"
id="ref44"
level="file">
<did>
<unittitle>"De huif naar den wind" [Blown by the Wind]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">17</container>
</did>
<scopecontent id="aspace_c378a3975f4c069ee66316dda78d4970">
<head>Scope and Contents</head>
<p>Photocopy from <title localtype="simple" render="italic">
<part>De Stijl</part>
</title>, vol. 6, no. 6-7 (1924), p. 88-88.</p>
<p>Holtzman 13</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184602"
id="ref46"
level="file">
<did>
<unittitle>"A bas l'harmonie traditionelle" [Down with Traditional Harmony]</unittitle>
<unitdatestructured altrender="1924" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924">1924</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">18</container>
</did>
<scopecontent id="aspace_5f86de1a0cc3c97089a5b38cbe5164aa">
<head>Scope and Contents</head>
<p>Typescript, Paris, 1924 (4 p.) with corrections by Enrico Prampolini, accompanied by a typed letter to Enrico Prampolini (January 22, 1924) and a typed letter, signed, from Prampolini to Harry Holtzman (July 11, 1960).</p>
<p>Holtzman 14</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184603"
id="ref48"
level="file">
<did>
<unittitle>"Les arts et la beauté de notre ambiance tangible" [The Arts and the Beauty of Our Tangible Surroundings]</unittitle>
<unitdatestructured altrender="1924" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924">1924</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">19</container>
</did>
<scopecontent id="aspace_86bcaa3e8542ef36265492be35f48da1">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>Manomètre</part>
</title>, vol. 6 (August 1924), p. 107-108; with Martin James' notes.</p>
<p>Holtzman 15</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184604"
id="ref50"
level="file">
<did>
<unittitle>"L'Evolution de l'humanité est l'évolution de l'art" [The Evolution of Humanity is the Evolution of Art]</unittitle>
<unitdatestructured altrender="1924" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924">1924</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">20</container>
</did>
<scopecontent id="aspace_4ff6657233f2226ec079028757b90bc0">
<head>Scope and Contents</head>
<p>In <title localtype="simple" render="italic">
<part>Bulletin de "l'Effort Moderne"</part>
</title>, no. 9 (November 1924); autograph annotations by Martin James.</p>
<p>Holtzman 16</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184605"
id="ref52"
level="file">
<did>
<unittitle>"L'Architecture future néo-plasticienne" [The Neo-plastic Architecture of the Future, 1925]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">21</container>
</did>
<scopecontent id="aspace_915a339542f8e8ce9aed0d89211e73ab">
<head>Scope and Contents</head>
<p>Typescripts of Mondrian's essay and "L'Evolution de l'Architecture moderne en Hollande" by Theo van Doesburg (7 p.).</p>
<p>Holtzman 17</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184606"
id="ref54"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Neue Gestaltung / Neoplastizismus / Nieuwe Beelding</part>
</title> (München: Albert Langen Verlag, 1925)</unittitle>
<unitdatestructured altrender="1925" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1925">1925</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">22</container>
</did>
<scopecontent id="aspace_7535f37a7bd89cdf56c528196d1f0b3e">
<head>Scope and Contents</head>
<p>Bauhaus Bücher 5</p>
<p>Holtzman 52</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184607"
id="ref56"
level="file">
<did>
<unittitle>"L'Art purement Abstrait" [Purely Abstract Art]</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<physloc id="aspace_d3fa8966b50f167c0ee0fce05fd4719f">Stored in: Oversize, Box 7, folder 138</physloc>
</did>
<scopecontent id="aspace_470a046220bcf5f7e243463f3bec16de">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>Vouloir</part>
</title> (March 1926); autograph annotations by Mondrian.</p>
<p>Holtzman 18</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184608"
id="ref59"
level="file">
<did>
<unittitle>"L'Expression plastique nouvelle dans la peinture" [New Plastic Expression in Painting]</unittitle>
<unitdatestructured altrender="1926" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1926">1926</datesingle>
</unitdatestructured>
<physloc id="aspace_258e3886749ea5856488ec1becd7eccf">Stored in: Oversize, Box 7, folder 139</physloc>
</did>
<scopecontent id="aspace_cabdf3cca26372d201504adfe13eaea7">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>Cahiers d'Art</part>
</title>, vol. 1, no. 7 (1926), p. 181-183; with autograph annotations by Martin James.</p>
<p>Holtzman 19</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184609"
id="ref62"
level="file">
<did>
<unittitle>"Neo-plasticisme. De Woning - De Straat - De Stad" [Neo-plasticism: Home--Street--City]</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">23</container>
</did>
<scopecontent id="aspace_4287d19387d1c4bdc57a1089271c8cdf">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>International Revue</part>
</title>, vol. 1, no. 10 (1927), p. 12-18; with autograph annotations by Martin James.</p>
<p>Holtzman 20</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184610"
id="ref64"
level="file">
<did>
<unittitle>"De jazz en de Neo-plastiek" [Jazz and Neo-plasticism]</unittitle>
<unitdatestructured altrender="1927" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1927">1927</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">24</container>
</did>
<scopecontent id="aspace_8a8580d75535d4af2b35abd7c14f4480">
<head>Scope and Contents</head>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>International Revue</part>
</title>, vol. 1, no. 12 (1927), p. 421-427; with autograph annotations by Mondrian.</p>
<p>Holtzman 22</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184611"
id="ref66"
level="file">
<did>
<unittitle>"Ne pas se occupe de la forme et de la coleur..."</unittitle>
<unitdatestructured altrender="1929" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929">1929</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">25</container>
</did>
<scopecontent id="aspace_d57f1237685136f919412d5da6e15dc0">
<head>Scope and Contents</head>
<p>Autograph manuscript, signed, in French, dated December 1929 (1 p.). Printed in <title localtype="simple" render="italic">
<part>Cercle et Carré</part>
</title>, 1929.</p>
<p>Accompanied by a typescript of an English translation by Harry Holtzman.</p>
<p>Holtzman 23</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184612"
id="ref68"
level="file">
<did>
<unittitle>"Die rein abstrakte Kunst" (l'art abstrait pur) [Pure Abstract Art]</unittitle>
<unitdatestructured altrender="1929 Oct 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-10-26">1929 Oct 26</datesingle>
</unitdatestructured>
<physloc id="aspace_3dba486d96c7a2a631849761e07b0ebe">Stored in: Oversize, Box 7, folder 140</physloc>
</did>
<scopecontent id="aspace_7993b9cbb030593165e0ed8f380075ae">
<head>Scope and Contents</head>
<p>Clipping from <title localtype="simple" render="italic">
<part>Neue Zürcher Zeitung</part>
</title>, no. 2060 (October 26, 1929).</p>
<p>Holtzman 24</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184613"
id="ref71"
level="file">
<did>
<unittitle>[A note on fashion]</unittitle>
<unitdatestructured altrender="circa 1930" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930">circa 1930</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">26</container>
</did>
<scopecontent id="aspace_b2c44cdb390e17e819669e820b676117">
<head>Scope and Contents</head>
<p>Detached leaf from unidentified French periodical.</p>
<p>Holtzman 25</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184614"
id="ref73"
level="file">
<did>
<unittitle>"L'Art réaliste et l'art superréaliste (La Morphoplastique et la Néoplastique)" [Realist and Superrealist Art (Morphoplastic and Neo-Plastic)]</unittitle>
<unitdatestructured altrender="1930" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930">1930</datesingle>
</unitdatestructured>
<physloc id="aspace_bde7e05ba0b7014f24e2846ca2b35686">Also stored in: Oversize, Box 7, folder 141</physloc>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">27</container>
</did>
<scopecontent id="aspace_4b7f6b5ba8ffa494de4c8799c9a04fe3">
<head>Scope and Contents</head>
<p>Photocopy of autograph manuscript, signed; Paris, January 1930 (10p.)</p>
<p>Typescript, signed, with autograph corrections, Paris, March 1930 (24 p.) and carbon typescript, signed, with autograph corrections and annotations by Martin James; some pages missing in the carbon copy.</p>
<p>Detached leaves from <title localtype="simple" render="italic">
<part>Cercle et Carré</part>
</title>, no. 2 (April 15, 1930), p. 1-4.</p>
<p>Holtzman 26</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184615"
id="ref76"
level="file">
<did>
<unittitle>"Le Cubisme et la Néoplastique"</unittitle>
<unitdatestructured altrender="1930" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1930">1930</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/17519 /locations/9"
containerid="39002104854196"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">28</container>
</did>
<scopecontent id="aspace_864aa3df31c8a39c8b685f637c5e5859">
<head>Scope and Contents</head>
<p>Typescript, signed, with autograph corrections, Paris, March 25, 1930 (12 p.).</p>
<p>Carbon typescript, signed, with autograph corrections, Paris, March 25, 1930 (12 p.).</p>
<p>Carbon typescript, signed, with autograph corrections by Mondrian and autograph annotations by Michel Seuphor, Paris, March 25, 1930 (12 p.).</p>
<p>Holtzman 27</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/184616"
id="ref78"
level="file">
<did>
<unittitle>"De l'art abstrait: reponse de Piet Mondrian"</unittitle>
<unitdatestructured altrender="1931" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931">1931</datesingle>
</unitdatestructured>
<physloc id="aspace_18813bf16e21b605b037a03df3c1f88b">Stored in: Oversize, Box 7, folder 142</physloc>
</did>
<scopecontent id="aspace_46f35bbc7f086d4e4d3d545cc61eb00c">
<head>Scope and Contents</head>