-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0006_3.xml
3059 lines (3058 loc) · 129 KB
/
nbuumu_0006_3.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
<ead xmlns="urn:isbn:1-931666-22-9" xsi="xsi=&quot;http://www.w3.org/2001/XMLSchema-instance" xlink="http://www.w3.org/1999/xlink" schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader audience="external" langencoding="iso639-2b" scriptencoding="iso15924" relatedencoding="dc" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="nbuumu" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 6.3::Leo Smit Photograph Collection)//EN" encodinganalog="identifier">nbuumu_0006_3</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the Leo Smit
Photograph Collection,
<date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="1926/1999" certainty="approximate"> circa
1926-1999</date> </titleproper>
<titleproper type="filing" altrender="nodisplay"> Smit (Leo) Photograph
Collection</titleproper>
<author encodinganalog="contributor">Finding aid prepared by John
Bewley.</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="publisher">State University of New York at Buffalo. Music Library</publisher>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
<p>&#xA9;
<date encodinganalog="date" type="publication">2008</date>. State
University of New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in EAD by John Bewley,
<date normal="2008-10" era="ce" calendar="gregorian" type="inclusive">October 2008</date>, updated in
<date normal="2012-01" era="ce" calendar="gregorian" type="inclusive">January 2012.</date>
</creation>
<langusage>Finding aid written in
<language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS (
<title render="italic">Describing Archives: A Content Standard
</title>). </descrules>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="marc21">
<did>
<head>Collection Overview</head>
<unittitle label="Title" encodinganalog="245$a">Leo Smit Photograph
Collection,
<unitdate encodinganalog="245$f" normal="1926/1999" type="inclusive" datechar="creation" certainty="approximate"> circa 1926-1999
</unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 6.3</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="creator" source="lcnaf" authfilenumber="676907">Smit, Leo, 1921-1999</persname>
</origination>
<physdesc label="Extent">
<extent unit="box" encodinganalog="300$a">5
boxes</extent>
<extent unit="item" encodinganalog="300$a"> (458 items)</extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546"> No
textual materials are included in the collection.</langmaterial>
<repository label="Repository" encodinganalog="852">
<corpname>State University of New York at Buffalo. Music Library</corpname>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
</repository>
<abstract label="Abstract" encodinganalog="520$a"> Chiefly black and
white photographs documenting Leo Smit's life and career in music.</abstract>
<unitdate type="inclusive" normal="1926/1999"> circa 1926-1999
</unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], Leo Smit Photograph Collection, circa 1926-1999,
Music Library, The State University of New York at Buffalo.</p>
</prefercite>
<accessrestrict encodinganalog="506">
<head>Terms of Access</head>
<p>Materials can be examined by qualified researchers in the Music
Library during hours of operation during which Music Librarians are present. In
order to insure access, researchers are advised to contact the Music Library in
advance of visits. </p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Copyright</head>
<p>Copyright for the materials in the collection does not reside with
the Music Library. Therefore, patrons wishing to publish any item, or part of
an item from this collection for any purpose, are responsible for securing
requisite permissions.</p>
</userestrict>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>The collection was in part a gift from Leo Smit in 1998. The
remainder of the collection was given to the Music Library by Nils Vigeland,
executor of Smit's estate. </p>
</acqinfo>
<accruals encodinganalog="584">
<head>Accruals and Additions</head>
<p>No further accruals are expected to this collection. </p>
</accruals>
<altformavail encodinganalog="530">
<head>Alternate Forms</head>
<p>Collection contents have been digitized in part and are available in
<extref href="http://ubdigit.buffalo.edu/collections/lib/lib-mus/lib-mus002_Smit.php" actuate="onrequest" show="new">UBdigit.</extref>
</p>
</altformavail>
<processinfo encodinganalog="583">
<head>Processing Information</head>
<p>Processed by John Bewley.</p>
</processinfo>
</descgrp>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>Leo Smit was born to Russian immigrants on January 12, 1921, in
Philadelphia. He received his earliest musical training from his father, Kolman
Smit, beginning at age five. Kolman Smit was a professional violinist who
performed in the Philadelphia Orchestra (1926-1931) under Leopold Stokowski,
the Cincinnati Symphony under Fritz Reiner, and the NBC Symphony under Arturo
Toscanini.</p>
<p>After private piano studies with Martha Lantner, Joseph Wissof, and
Bert Shefter, Smit traveled to Moscow with his mother in 1929 to study piano
for three months with Dmitri Kabalevsky on scholarship at the Moscow
Conservatory. Upon his return to Philadelphia, Smit received a scholarship in
1930 to study piano at Curtis Institute of Music with noted piano pedagogue
Isabelle Vengerova. He continued his studies on scholarship in New York,
studying piano with Jos&#xE9; Iturbi (1933-35) and composition with Nicolas Nabokov
(1935). It was under Nabokov's tutelage that Smit produced his first original
composition in 1935, Zvay, a song setting of a Yiddish poem by Mani Loeb for
soprano and piano. </p>
<p>Smit began his professional career as a pianist while still in his
teens. His first professional engagement was as rehearsal pianist for George
Balanchine's American Ballet Company in 1936-37. A year after beginning in this
position, Smit met Igor Stravinsky during rehearsals of the composer's ballet,
Jeu de Cartes. Smit gave his debut recital as a solo pianist at Carnegie Hall
in February 1939. His successful debut was followed by a concert tour of the
United States in 1940. </p>
<p>Leo Smit's career as composer, pianist, conductor, and educator
spanned seven decades of musical life in the United States. He established
close working relationships, and/or friendships, with many of the most
prominent musicians of the 20th century, including Igor Stravinsky, B&#xE9;la
Bart&#xF3;k, Aaron Copland, Leonard Bernstein, Harold Shapero, William Schuman, Alex
Haieff, Leopold Stokowski, and Lukas Foss. As a performer, Smit was an
enthusiastic and persuasive advocate and interpreter of the music of his time,
especially the solo piano music of Aaron Copland. His compositional output
totals more than one hundred works, including two operas, three symphonies,
more than ninety songs, two ballets, and numerous chamber and piano works. </p>
<p>Smit was also a talented photographer. In addition to the many
photographs he took of noted musicians, Smit also used his skill as a
photographer to capture images from his travels. Many of his travel pictures
reflect his reverence for nature. As part of his innovative approach to
programming, Smit would often include displays of his photography in his
theme-based concerts. </p>
<p>During his career Leo Smit earned several awards and honors, including
Fulbright (piano) and Guggenheim (composition) Fellowships in 1950, a
fellowship at the American Academy in Rome for 1950-51, the Boston Symphony
Merit Award in 1953 for his Symphony No. 1 (premiered October 16, 1953 by the
Boston Symphony Orchestra, conducted by Charles Munch), the New York Critics
Circle Award in 1957 (also for his Symphony No. 1), his selection as an artist
for a State Department concert tour of Latin America in 1967-68, and the
Buffalo Evening News Man of the Year award in 1969. As an educator, Smit held
positions at Sarah Lawrence College (1947-49), UCLA (1957-63), and the State
University of New York at Buffalo (1962-84). </p>
<p>Leo Smit died December 12, 1999 in Scripps Hospital, Encinitas,
California. </p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The Leo Smit Photograph Collection consists of a mixture of
photographs documenting Smit's life. These include images of Smit as a child
and young man, photographs with friends and colleagues, including Aaron
Copland, Pete Johnson, Leonard Bernstein, and Sir Fred Hoyle, photographs
documenting Smit's tour of Latin America 1967-1968, portraits of Smit, and
images of scenes from Smit's chamber opera, Magic Water. The collection also
includes several photographs by Leo Smit. These include images of Leonard
Bernstein, William Schuman, members of the University at Buffalo Music
Department (including Morton Feldman), and members of the Buffalo Sabres hockey
team, as well as photographs of Smit's collection of Kachina dolls. Portraits
by other photographers include those of Aaron Copland, Pete Johnson, and Smit's
father, Kolman Smit. There is also a single postcard portrait of composer Peter
Ilyich Tchaikovsky and a single reproduction of a photograph of Franz Liszt.
Some items in the collection have been dated according to date stamps on the
image verso. These are most likely more reflective of when a print was made
rather than when it was shot.</p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p> The collection is arranged in nine series:</p>
<list>
<item>
<ref target="series1" actuate="onrequest" show="replace" role="text/html">I. Photographs of Leo Smit, with and without other people.
Arranged in approximate chronological order.</ref>
</item>
<item>
<ref target="series2" show="replace" actuate="onrequest" role="text/html">II. Photographs of people and places without Leo Smit.
Arranged alphabetically by name of subject.</ref>
</item>
<item>
<ref target="series3" actuate="onrequest" show="replace">III.
Photographs by Leo Smit of a 1976 hockey game between the Buffalo Sabres and
the New York Rangers.</ref>
</item>
<item>
<ref target="series4" show="replace" actuate="onrequest" role="text/html">IV. Photographs by Leo Smit of Istanbul, Turkey. </ref>
</item>
<item>
<ref actuate="onrequest" role="text/html" show="replace" target="series5">V. Photographs of Leo Smit's collection of Kachina
dolls.</ref>
</item>
<item>
<ref actuate="onrequest" role="text/html" show="replace" target="series6">VI. Postcard portrait of Peter Ilyich
Tchaikovsky</ref>.</item>
<item>
<ref actuate="onrequest" role="text/html" show="replace" target="series7">VII. Photographs by Leo Smit of faculty members of the
University at Buffalo Music Department taken at a retreat April 9, 1975 at the
First Presbyterian Church, Buffalo, N.Y.</ref>
</item>
<item>
<ref actuate="onrequest" role="text/html" show="replace" target="series8">VIII. Negatives for photographs in the
collection.</ref>
</item>
<item>
<ref role="text/html" actuate="onrequest" show="replace" target="series9">IX. Oversized color portrait of Leo Smit </ref>(2
copies).</item>
<item>
<ref role="text/html" actuate="onrequest" show="replace" target="series10">X. Additional photographs</ref>
</item>
</list>
</arrangement>
<dsc type="combined">
<head>Container List</head>
<c level="series" id="c_5ccc8a1169ad1">
<did>
<unitid id="series1">I.</unitid>
<unittitle>Photographs of Leo Smit, with and without other people
<unitdate type="inclusive" normal="1943/1996">1926-1998</unitdate>
</unittitle>
<physdesc>
<extent>Items 1-78</extent>
</physdesc>
</did>
<arrangement>
<p>Arranged in approximate chronological order.</p>
</arrangement>
<c level="item" id="c_5ccc8a1169ae9">
<did>
<container type="box">1</container>
<container type="item">smit001</container>
<unittitle>Leo Smit at 5 years old,
<unitdate type="inclusive">1926</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,234" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169af1">
<did>
<container type="box">1</container>
<container type="item">smit002</container>
<unittitle>Leo Smit at 9 years old,
<unitdate type="inclusive">1930</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,188" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Eisenburg,
Maurice</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169af8">
<did>
<container type="box">1</container>
<container type="item">smit003</container>
<unittitle>Leo Smit at 15 years old,
<unitdate type="inclusive">1936</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,135" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Astor Studio (Astoria, Long
Island)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169aff">
<did>
<container type="box">1</container>
<container type="item">smit004</container>
<unittitle>Leo Smit at age 17 years old,
<unitdate type="inclusive">1938</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,241" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Talbot (New York
City)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b07">
<did>
<container type="box">1</container>
<container type="item">smit005</container>
<unittitle>Leo Smit at age 17 years,
<unitdate type="inclusive">1938</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,207" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Talbot (New York
City)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b0e">
<did>
<container type="box">1</container>
<container type="item">smit006</container>
<unittitle>Leo Smit at age 17 years,
<unitdate type="inclusive">1938</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,160" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Talbot (New York
City)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b16">
<did>
<container type="box">1</container>
<container type="item">smit007</container>
<unittitle>Leo Smit (center) with Igor Stravinsky,
<unitdate type="inclusive">1936</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,122" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Schaal, Eric</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b1f">
<did>
<container type="box">1</container>
<container type="item">smit008</container>
<unittitle>Leo Smit (left) with Igor Stravinsky,
<unitdate type="inclusive">1936</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,99" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Schaal, Eric</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b27">
<did>
<container type="box">1</container>
<container type="item">smit009</container>
<unittitle>Leo Smit with Benny Goodman,
<unitdate type="inclusive">1950</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,216" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b30">
<did>
<container type="box">1</container>
<container type="item">smit010</container>
<unittitle>Leo Smit at piano,
<unitdate type="inclusive">195-?</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,157" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b39">
<did>
<container type="box">1</container>
<container type="item">smit011</container>
<unittitle>Leo Smit with Aaron Copland,
<unitdate type="inclusive">1958</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,187" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b42">
<did>
<container type="box">1</container>
<container type="item">smit012</container>
<unittitle>Leo Smit's hands at piano keyboard,
<unitdate type="inclusive">ca. 1965</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,172" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Smith, Gordon S</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b4c">
<did>
<container type="box">1</container>
<container type="item">smit013</container>
<unittitle>Leo Smit with Pete Johnson,
<unitdate type="inclusive">1966?</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,103" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b56">
<did>
<container type="box">1</container>
<container type="item">smit014</container>
<unittitle>Leo Smit (at piano) in recital at the National
Conservatory of Music, Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,215" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b60">
<did>
<container type="box">1</container>
<container type="item">smit015</container>
<unittitle>Leo Smit (at piano) at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,174" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b6b">
<did>
<container type="box">1</container>
<container type="item">smit016</container>
<unittitle>Leo Smit (at piano) at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,143" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b76">
<did>
<container type="box">1</container>
<container type="item">smit017</container>
<unittitle>Leo Smit lecturing at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,109" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b81">
<did>
<container type="box">1</container>
<container type="item">smit018</container>
<unittitle>Leo Smit with student at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,214" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b8d">
<did>
<container type="box">1</container>
<container type="item">smit019</container>
<unittitle>Leo Smit with student at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,152" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169b99">
<did>
<container type="box">1</container>
<container type="item">smit020</container>
<unittitle>Leo Smit at piano at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,111" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169ba5">
<did>
<container type="box">1</container>
<container type="item">smit021</container>
<unittitle>Leo Smit at piano at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,237" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169bb1">
<did>
<container type="box">1</container>
<container type="item">smit022</container>
<unittitle>Leo Smit at piano at National Conservatory of Music,
Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,209" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169bbd">
<did>
<container type="box">1</container>
<container type="item">smit023</container>
<unittitle>Leo Smit with students at National Conservatory of
Music, Santo Domingo,
<unitdate type="inclusive">March 8, 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,169" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169bcb">
<did>
<container type="box">1</container>
<container type="item">smit024</container>
<unittitle>Leo Smit at piano,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,104" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169bd8">
<did>
<container type="box">1</container>
<container type="item">smit025</container>
<unittitle>Leo Smit reading a lecture at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,190" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169be6">
<did>
<container type="box">1</container>
<container type="item">smit026</container>
<unittitle>Leo Smit at piano with students at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,149" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169bf4">
<did>
<container type="box">1</container>
<container type="item">smit027</container>
<unittitle>Leo Smit at piano at Asuncion Bi-National Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,101" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c02">
<did>
<container type="box">1</container>
<container type="item">smit028</container>
<unittitle>Leo Smit at piano at Asuncion Bi-National Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,165" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c11">
<did>
<container type="box">1</container>
<container type="item">smit029</container>
<unittitle>Leo Smit at piano before audience at Asuncion
Bi-National Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,113" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c20">
<did>
<container type="box">1</container>
<container type="item">smit030</container>
<unittitle>Leo Smit with Gladys Vallejo at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,205" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c2f">
<did>
<container type="box">1</container>
<container type="item">smit031</container>
<unittitle>Leo Smit at piano at Asuncion Bi-National Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,123" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c40">
<did>
<container type="box">1</container>
<container type="item">smit032</container>
<unittitle>Leo Smit with dignitaries at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,217" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c50">
<did>
<container type="box">1</container>
<container type="item">smit033</container>
<unittitle>Leo Smit with dignitaries at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,154" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c61">
<did>
<container type="box">1</container>
<container type="item">smit034</container>
<unittitle>Leo Smit with dignitaries at Asuncion Bi-National
Center,
<unitdate type="inclusive">April 1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,213" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto India (Asuncion,
Paraguay)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c72">
<did>
<container type="box">1</container>
<container type="item">smit035</container>
<unittitle>Leo Smit at piano,
<unitdate type="inclusive">1967</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,198" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<corpname role="creator">Foto Miguel
(Brazil)</corpname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c83">
<did>
<container type="box">1</container>
<container type="item">smit036</container>
<unittitle>Six local musicians on 1967-68 Latin American tour,
<unitdate type="inclusive">1967-68</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,159" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169c94">
<did>
<container type="box">1</container>
<container type="item">smit037</container>
<unittitle>Leo Smit with Ambassador Clarence Boonstra at reception
for Costa Rican writers and national arts prizewinners,
<unitdate type="inclusive">April 21, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,108" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169ca6">
<did>
<container type="box">1</container>
<container type="item">smit038</container>
<unittitle>Leo Smit with Ambassador Clarence Boonstra at reception
for Costa Rican writers and national arts prizewinners,
<unitdate type="inclusive">April 21, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,228" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169cb8">
<did>
<container type="box">1</container>
<container type="item">smit039</container>
<unittitle>Leo Smit at piano before audience at National
Conservatory,
<unitdate type="inclusive">April 25, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,167" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169ccc">
<did>
<container type="box">1</container>
<container type="item">smit040</container>
<unittitle>Leo Smit being greeted at La Paz airport,
<unitdate type="inclusive">March 25, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,125" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169cde">
<did>
<container type="box">1</container>
<container type="item">smit041</container>
<unittitle>Leo Smit being greeted at La Paz airport,
<unitdate type="inclusive">March 25, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,141" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169cf2">
<did>
<container type="box">1</container>
<container type="item">smit042</container>
<unittitle>Leo Smit at La Paz airport,
<unitdate type="inclusive">March 25, 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,200" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169d05">
<did>
<container type="box">1</container>
<container type="item">smit043</container>
<unittitle>Proof sheet with three images of Leo Smit at piano,
<unitdate type="inclusive">ca. 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,201" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 photograph</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169d18">
<did>
<container type="box">1</container>
<container type="item">smit044</container>
<unittitle>Proof sheet with 27 images of Leo Smit alone at piano
and 6 with students,
<unitdate type="inclusive">ca. 1968</unitdate>
</unittitle>
<dao linktype="simple" href="http://ubdigit.buffalo.edu/u?/LIB-MUS002,147" actuate="onrequest" show="new"/>
<physdesc>
<extent>1 proof sheet</extent>
</physdesc>
<origination label="Photographer">
<persname role="creator">Unidentified</persname>
</origination>
</did>
</c>
<c level="item" id="c_5ccc8a1169d2d">
<did>
<container type="box">1</container>
<container type="item">smit045</container>