-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm23_midi.ly
81 lines (74 loc) · 1.7 KB
/
psalm23_midi.ly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
77
78
79
80
81
#(set-global-staff-size 18)
\include "psalm23.ly"
\score {
\new ChoirStaff <<
\new Staff = "sopranoi" \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Soprano I"
\tempo "Very freely" 2 = 60
\global
\clef treble
\new Voice = "sopranoi" {
\sopranoimusic
}
}
\new Lyrics \lyricsto "sopranoi" {
\sopranolyrics
}
\new Staff \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Soprano II"
\global
\clef treble
\new Voice = "sopranoii" {
\sopranoiimusic
}
}
\new Lyrics \lyricsto "sopranoii" {
\sopranolyrics
}
\new Staff \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Alto"
\global
\clef treble
\new Voice = "alto" {
\altomusic
}
}
\new Lyrics \lyricsto "alto" {
\altolyrics
}
\new Staff = "tenorstaff" \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Tenor"
\global
\clef "treble_8"
\new Voice = "tenor" {
\tenormusic
}
}
\new Lyrics \lyricsto "tenor" {
\tenorlyrics
}
\new Staff \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Bass I"
\global
\clef bass
\new Voice = "bassi" {
\bassimusic
}
}
\new Lyrics \lyricsto "bassi" {
\bassilyrics
}
\new Staff \with { \consists "Ambitus_engraver" } {
\set Staff.instrumentName = #"Bass II"
\global
\clef bass
\new Voice = "bassii" {
\bassiimusic
}
}
\new Lyrics \lyricsto "bassii" {
\bassiilyrics
}
>>
\midi {}
}