-
Notifications
You must be signed in to change notification settings - Fork 4
/
chant.ly
75 lines (64 loc) · 1.08 KB
/
chant.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
\version "2.18.2"
\language "english"
#(set-global-staff-size 17)
global = {
\key ef \major
s1*3 \bar "||"
s1*4 \bar "||"
s1*3 \bar "||"
s1*4 \bar "|."
}
soprano = \relative c'' {
bf1 ef2 c d1
bf1 c2 af bf g f1
af1 df2 bf c1
f,1 bf2 g af f ef1
}
alto = \relative c' {
ef1 ef2 f f1
ef1 ef2 f d ef d1
c1 f2 ef ef1
d1 d2 ef ef d ef1
}
tenor = \relative c' {
g1 g2 a bf1
g1 af2 c bf bf bf1
af1 af2 g af1
bf1 bf2 c c af g1
}
bass = \relative c {
ef1 c2 f bf,1
ef1 af2 f g ef bf1
f'1 df2 ef af,1
af'1 g2 c, f bf, ef1
}
\header {
composer = "Stanford"
tagline = ##f
}
\paper {
indent = 0
left-margin = 1.5\cm
right-margin = 1.5\cm
}
\layout {
\context {
\Score
\override TimeSignature.stencil = ##f
}
}
\score {
<<
\new StaffGroup <<
\new Staff <<
\new Voice << \global \voiceOne \soprano >>
\new Voice << \global \voiceTwo \alto >>
>>
\new Staff <<
\clef bass
\new Voice << \global \voiceOne \tenor >>
\new Voice << \global \voiceTwo \bass >>
>>
>>
>>
}