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