]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/gigue-cello.ly
release: 1.0.10
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / gigue-cello.ly
1 \header{
2 filename =       "gigue-cello.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 % piece = "Gigue";
6 % opus =         "BWV 1008";
7 opus =   "";
8 composer =       "Johann Sebastian Bach (1685-1750)";
9 enteredby =      "JCN";
10 copyright =      "public domain";
11 }
12
13 %{
14  Tested Features:breaking algorithm, chords, multivoice, accents, 
15  dotted slurs
16 %}
17
18 \version "1.0.4";
19
20 \include "gigue-urtext.ly";
21
22 gigue_cello_global = \notes{
23         \time 3/8;
24         \key f;
25         \clef bass;
26         \partial 8;
27         \skip 4.*31;
28         s4
29         \bar ":|:";
30         \skip 4.*44;
31         s4
32         \bar ":|";
33 }
34
35 gigue_cello_scripts = \notes{
36 }
37
38 gigue_cello_staff = \type Staff <
39         \$gigue
40         \$gigue_cello_global
41         \$gigue_cello_scripts
42 >
43
44 \score{
45         \$gigue_cello_staff
46         \include "scs-paper.ly";
47         \midi{ \tempo 4 = 60; }
48         \header{ piece = "Gigue"; }
49 }
50