blob: ca8ed9e1ebffdf106d9e84b5488e48795ff337fc (
plain)
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
|
%some settings% vim: ai sw=2 lbr nu et
meta = {
%(dynamic) marks global to all voices
\dynamicUp
}
% articulation
pat = {
s2 s8-- s8-. s8 s8-.
}
dot = {
s2 s8-- s8-. s8 s8->
}
sopranArt = {
s4.
\repeat unfold 16 s1
\repeat unfold 16 s1
\dot
}
altArt = {
s4.
\repeat unfold 16 s1
\repeat unfold 14 s1
\pat
\pat
\dot
}
tenorArt = {
}
bassArt = {
s4.
s4-. s2.
\repeat unfold 3 {
s1
s1->
}
s1
s4-. s2.
\override BreathingSign #'text = \markup { \musicglyph #"scripts.caesura" }
s2. \breathe s4->
s1->
\repeat unfold 5 s1
\repeat unfold 6 s1
s4 s2-> s4
\repeat unfold 7 s1
\pat
\pat
\dot
}
|