]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/courante-viola.ly
release: 1.0.8
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / courante-viola.ly
1 \header{
2 filename =       "courante-viola.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 "1.0.2";
19
20 \include "courante-urtext.ly";
21
22 courante_viola_global = \melodic{
23         \time 3/4;
24         \key f;
25         \partial 16;
26         \clef alto;
27         \skip 2.*15;
28         s2 s8.
29         \bar ":|:";
30         \skip 2.*15;
31         s2 s8.
32         \bar ":|";
33 }
34
35 courante_viola_scripts = \melodic{
36 }
37
38 courante_viola_staff = \type Staff <
39         \melodic \transpose c' \$courante
40         \$courante_viola_global
41         \$courante_viola_scripts
42 >
43
44 \score{
45         \$courante_viola_staff
46         \include "scs-paper.ly";
47         \midi{ \tempo 4 = 55; }
48         \header{ piece = "Courante"; }
49 }
50