-
Notifications
You must be signed in to change notification settings - Fork 1
/
4-5-2-bourree.ly
58 lines (52 loc) · 1.18 KB
/
4-5-2-bourree.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
\version "2.18.0"
\language "english"
bourreefourtwo = \transpose bf a' {
\key bf \major
\time 2/2
\tempo 2 = 76
\partial 4
\repeat volta 2 {
<<bf4 d>> |
<<bf ef>> c' <<c' f>> a\4 |
<<bf8\1 g\2>> c' d'4 <<d' d>> bf |
ef c' f a\4 |
bf f <<bf\1 f\2 d\3 bf\4>>
}
\break
\repeat volta 2 {
<<f'\1 bf\3>> |
f' g' <<g' d'>> f' |
ef'8\2 d'\2 ef'4\2 c'\2 ef' |
<<f' a>> ef' <<ef' bf>> d' |
c'8 bf a g\2 f ef <<bf4 d>> | \break
<<bf ef>> c' <<c' f>> a\4 |
<<bf8 g>> c' d'4 <<d' d>> bf |
ef c' f a\4 |
<<bf2.\1 f\2 d\3 bf\4>>
}
}
\bookpart {
\tocItem \markup {\italic Bourrée \italic 2 from Cello Suite No 4}
\header {
title = "Bourrée 2"
subtitle = "from Cello Suite No 4"
composer = "J S Bach"
arranger = "arr T E Preece"
copyright = ##f
tagline = ##f
}
\score {
\new StaffGroup <<
\new Staff \with {
} \new Voice \with {
\remove New_fingering_engraver
\remove Dynamic_engraver
\remove Text_engraver
} \bourreefourtwo
\new TabStaff \with {
stringTunings = #ukulele-tuning
\tabFullNotation
} \bourreefourtwo
>>
}
}