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