1
2
3 \version "2.22.2"
4 #(set-default-paper-size "letter")
5 #(set-global-staff-size 18)
6 \include "score-soprano-all.ly"
7 \include "score-alto-all.ly"
8 \include "score-tenor-all.ly"
9 \include "score-bass-all.ly"
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 \paper {
29
30 }
31
32 \header {
33 dedication = "In Southern"
34 title = "Avenue of the south wind"
35
36 subtitle = \markup { des major(\italic "c des ees f ges aes bes") }
37 subsubtitle = \markup{\center-column {
38 "soprano; C clef on 1st line, alto; C clef on 3rd line."
39 " bass; F clef on 4th line, tenor; C clef on 4th line."}}
40 arranger = "Feb. 17, JST 2010"
41 composer = \markup{ \line {\italic "Yukio Yoshida"}}
42 poet = \markup { \fontsize #-1.5
43 \fill-line {
44 \column {
45 \line { \italic
46 \column {
47 " "
48 " "
49 { \bold "Poem; Wind"}
50 "Avenue of the south wind"
51 "Clean cool and an uncomfortably warm breeze"
52 "Let a suggestion of the sap of poplar"
53 "Coming into the room shaking the curtains."
54 "Beneath the body of sleep in the afternoon"
55 "The dream of stealing a nap"
56 "Go out into the street and shaking the curtains."
57 " "
58 "Avenue of the south wind"
59 "Clean cool and an uncomfortably warm breeze"
60 "The street without anyone and"
61 "Enter the room shaking the curtains"
62 "Leave the street and shaking the curtains."
63 \bold " By(& Compose); Yukio Yoshida"
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 opus = "Op.43"
94 meter = "Vivace"
95 copyright = "public Domain"
96 }
97
98
99
100
101 \score {
102 <<
103
104 \context StaffGroup <<
105 \new ChoirStaff <<
106 \new Voice = "soprano" { \clef soprano \key des\major \time 3/2
107 \set Staff.instrumentName = "soprano" \soprano }
108 \new Lyrics = "mainSL" \lyricsto "soprano" { \sopranoL }
109 \new Voice = "repeatsS" { \clef soprano \key des\major \time 3/2
110 \sopranoTwo }
111 \new Lyrics = "repeatLs" \lyricsto "sopranoTwo" { \sopranoTwoL }
112 >>
113
114 \new ChoirStaff <<
115 \new Voice = "alto" { \clef alto \key des\major \time 3/2
116 \set Staff.instrumentName = "alto " \alto }
117 \new Lyrics = "mainAL" \lyricsto "alto" { \altoL }
118 \new Voice = "repeataA" { \clef alto \key des\major \time 3/2
119 \altoTwo }
120 \new Lyrics = "repeataLa" \lyricsto "altoTwo" { \altoTwoL }
121 >>
122
123 \new ChoirStaff <<
124 \new Voice = "tenor" { \clef tenor \key des\major \time 3/2
125 \set Staff.instrumentName = "tenor " \tenor }
126 \new Lyrics = "mainTL" \lyricsto "tenor" { \tenorL }
127 \new Voice = "repeataT" { \clef tenor \key des\major \time 3/2
128 \tenorTwo }
129 \new Lyrics = "repeataLt" \lyricsto "tenorTwo" { \tenorTwoL }
130 >>
131
132 \new ChoirStaff <<
133 \new Voice = "bass" { \clef bass \key des\major \time 3/2
134 \set Staff.instrumentName = "bass " \bass }
135 \new Lyrics = "mainBL" \lyricsto "bass" { \bassL }
136 \new Voice = "repeataB" { \clef bass \key des\major \time 3/2
137 \bassTwo }
138 \new Lyrics = "repeataLb" \lyricsto "bassTwo" { \bassTwoL }
139 >>
140 >>
141
142
143
144
145
146
147
148
149 >>
150
151 \layout {
152 \context { \RemoveEmptyStaffContext
153 \override VerticalAxisGroup #'remove-first = ##t
154
155 \Staff
156 \override BarLine #'transparent = ##t
157 }
158 }
159 }
160
161
162 \score {
163 <<
164 \new Staff { \clef soprano \key des\major \time 3/2 \tempo 4 = 60
165 \set Staff.midiInstrument = "pad 2 (warm)"
166 \unfoldRepeats \sopranoM }
167
168 \new Staff { \clef alto \key des\major \time 3/2 \tempo 4 = 60
169 \set Staff.midiInstrument = "pad 2 (warm)"
170 \unfoldRepeats \altoM }
171
172 \new Staff { \clef tenor \key des\major \time 3/2 \tempo 4 = 60
173 \set Staff.midiInstrument = "pad 2 (warm)"
174 \unfoldRepeats \tenorM }
175
176 \new Staff { \clef bass \key des\major \time 3/2 \tempo 4 = 60
177 \set Staff.midiInstrument = "pad 2 (warm)"
178 \unfoldRepeats \bassM }
179
180
181
182
183
184
185
186 >>
187
188 \midi { tempoWholesPerMinute = #(ly:make-moment 60 4) }
189 }