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