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