]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/courante-cello.ly
release: 1.1.41
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / courante-cello.ly
1 \header{
2 filename =       "courante-cello.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 % piece = "Courante";
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.16";
19
20 \include "courante-urtext.ly";
21
22 courante_cello_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef bass;
26         \repeat 2 {
27                 \partial 16;
28                 s16
29                 s2.*15
30                 % hmm
31                 s2 s8
32                 \partial 16*11;
33                 s16
34         } \repeat 2 {
35                 % urg
36                 s32 \partial 16; s32
37                 s2.*15
38                 s16*11
39                 \partial 16*11;
40         }
41 }
42
43 courante_cello_scripts = \notes{
44 }
45
46 courante_cello_staff = \context Staff <
47         \$courante
48         \$courante_cello_global
49         \$courante_cello_scripts
50 >
51
52 \score{
53         \$courante_cello_staff
54         \paper{
55                 \include "scs-paper.ly";
56                 gourlay_maxmeasures = 4.0;
57         }
58         \midi{ \tempo 4 = 55; }
59         \header{ piece = "Courante"; }
60 }
61