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