]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/sarabande-alto.ly
partial: 1.0.1.jcn
[lilypond.git] / mutopia / J.S.Bach / sarabande-alto.ly
1 \header{
2 filename =       "sarabande-alto.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 piece = "Sarabande";
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 "sarabande-urtext.ly";
26
27 sarabande_alto_global = \melodic{
28         \meter 3/4;
29         \key bes;
30         \clef alto;
31         \skip 2.*12;
32         \bar ":|:";
33         \skip 2.*16;
34         \bar ":|";
35 }
36
37 sarabande_alto_scripts = \melodic{
38 }
39
40 sarabande_alto_staff = \type Staff <
41         \$sarabande
42         \$sarabande_alto_global
43         \$sarabande_alto_scripts
44 >
45
46 \score{
47         \$sarabande_alto_staff
48         \include "scs-paper.ly";
49         \midi{ 
50                 \tempo 4 = 40;
51         }
52 }
53