]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/gigue-cello.ly
1febb285303013062d71e1f2df65ff2a0dbf3d86
[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.2.0";
19
20 \include "gigue-urtext.ly";
21
22 gigue_cello_global = \notes{
23         \time 3/8;
24         \key f;
25         \clef bass;
26         \repeat "volta" 2 {
27                 \partial 8;
28                 s8
29                 s4.*31
30                 s4
31                 %\partial 4;
32         } \repeat "volta" 2 {
33                 % urg
34                 %s16 \partial 8; s16
35                 s8
36                 s4.*43
37                 s4
38                 %\partial 4;
39         }
40 }
41
42 gigue_cello_scripts = \notes{
43 }
44
45 gigue_cello_staff = \context Staff <
46         \$gigue
47         \$gigue_cello_global
48         \$gigue_cello_scripts
49 >
50
51 \score{
52         \$gigue_cello_staff
53         \paper{
54                 \include "scs-paper.ly";
55                 gourlay_maxmeasures = 7.0;
56                 \translator{
57                         \VoiceContext
58                         beamAutoEnd_8 = "3/4";
59                         beamAutoEnd_16 = "3/4";
60                 }
61         }
62         \midi{ \tempo 4 = 60; }
63         \header{ piece = "Gigue"; }
64 }
65