]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/courante-cello.ly
partial: 1.0.1.jcn
[lilypond.git] / mutopia / J.S.Bach / 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 "0.1.14";
19
20 urg_urg = \melodic {
21       \octave relative;
22       \octave c;
23 }
24
25 \include "courante-urtext.ly";
26
27 courante_cello_global = \melodic{
28         \meter 3/4;
29         \key bes;
30         \partial 16;
31         \clef bass;
32         \skip 2.*15;
33         s2 s8.
34         \bar ":|:";
35         \skip 2.*15;
36         s2 s8
37         \bar ":|";
38 }
39
40 courante_cello_scripts = \melodic{
41 }
42
43 courante_cello_staff = \type Staff <
44         \$courante
45         \$courante_cello_global
46         \$courante_cello_scripts
47 >
48
49 \score{
50         \$courante_cello_staff
51         \include "scs-paper.ly";
52         \midi{ 
53                 \tempo 4 = 40;
54         }
55 }
56