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-tenor-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 = "tenor; C clef on 4th line"
18 composer = "Yukio Yoshida"
19 poet = "Refer; Tenor"
20 }
21
22
23
24 \score {
25 <<
26 \context ChoirStaff = "Only-tenor" <<
27 \new Voice = "tenor" { \clef tenor \key des\major \time 3/2
28 \set Staff.instrumentName = "tenor" \tenor }
29 \new Lyrics = "mainSL" \lyricsto "tenor" { \tenorL }
30 \new Voice = "repeatsT" { \clef tenor \key des\major \time 3/2
31 \tenorTwo }
32 \new Lyrics = "repeatLt" \lyricsto "tenorTwo" { \tenorTwoL }
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 tenor \key des\major \time 3/2 \tempo 4 = 60
55 \set Staff.midiInstrument = "pad 2 (warm)"
56 \unfoldRepeats \tenorM }
57
58
59
60
61
62
63
64
65 >>
66
67 \midi { tempoWholesPerMinute = #(ly:make-moment 60 4) }
68 }
69
70 \markup { " " }
71 \markup { " " }
72 \markup { " " }
73 \markup { " " }
74 \markup { " " }
75 \markup { " " }
76 \markup { " " }
77 \markup { " " }
78 \markup { " " }
79 \markup { " " }
80 \markup { " " }
81 \markup { " " }
82 \markup { " " }
83 \markup { \fill-line { \column {
84 \line { \italic
85 \column {
86 " "
87 " "
88 { \bold "Poem; Wind"}
89 "Avenue of the south wind"
90 "Clean cool and an uncomfortably warm breeze"
91 "Let a suggestion of the sap of poplar"
92 "Coming into the room shaking the curtains."
93 "Beneath the body of sleep in the afternoon"
94 "The dream of stealing a nap"
95 "Go out into the street and shaking the curtains."
96 " "
97 "Avenue of the south wind"
98 "Clean cool and an uncomfortably warm breeze"
99 "The street without anyone and"
100 "Enter the room shaking the curtains"
101 "Leave the street and shaking the curtains."
102 \bold " By; Yukio Yoshida"
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 }}}}