1
2
3
4 \version "2.22.2"
5 #(set-default-paper-size "letter")
6
7 #(set-global-staff-size 18)
8
9 \include "score-alto-only.ly"
10 \paper {
11 ragged-last-bottom = ##f
12 }
13
14 \header {
15 title = "Avenue of the south Wind"
16 subtitle = \markup { des major(\italic "c des ees f ges aes bes") }
17 subsubtitle = "alto; C clef on 3rd line"
18 composer ="Yukio Yoshida"
19 poet = "Refer; Alto"
20 }
21
22
23
24 \score {
25 <<
26 \context ChoirStaff = "Only-alto" <<
27 \new Voice = "alto" { \clef alto \key des\major \time 3/2
28 \set Staff.instrumentName = "alto" \alto }
29 \new Lyrics = "mainSL" \lyricsto "alto" { \altoL }
30 \new Voice = "repeatsA" { \clef alto \key des\major \time 3/2
31 \altoTwo }
32 \new Lyrics = "repeatLa" \lyricsto "altoTwo" { \altoTwoL }
33 >>
34
35
36
37
38
39
40
41
42 >>
43
44 \layout {
45 \context { \RemoveEmptyStaffContext
46 \override VerticalAxisGroup #'remove-first = ##t
47 }
48 }
49 }
50
51
52 \score {
53 <<
54 \new Staff { \clef alto \key des\major \time 3/2 \tempo 4 = 60
55 \set Staff.midiInstrument = "pad 2 (warm)"
56 \unfoldRepeats \altoM }
57
58
59
60
61
62
63
64
65 >>
66
67 \midi { tempoWholesPerMinute = #(ly:make-moment 60 4) }
68 }
69
70
71 \markup { " " }
72 \markup { " " }
73 \markup { " " }
74 \markup { " " }
75 \markup { " " }
76 \markup { " " }
77 \markup { \fill-line { \column {
78 \line { \italic
79 \column {
80 " "
81 " "
82 { \bold "Poem; Wind"}
83 "Avenue of the south wind"
84 "Clean cool and an uncomfortably warm breeze"
85 "Let a suggestion of the sap of poplar"
86 "Coming into the room shaking the curtains."
87 "Beneath the body of sleep in the afternoon"
88 "The dream of stealing a nap"
89 "Go out into the street and shaking the curtains."
90 " "
91 "Avenue of the south wind"
92 "Clean cool and an uncomfortably warm breeze"
93 "The street without anyone and"
94 "Enter the room shaking the curtains"
95 "Leave the street and shaking the curtains."
96 \bold " By; Yukio Yoshida"
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 }}}}