]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/courante-viola.ly
b1e9d556d9ee933161169937ec53e9c9e42dd257
[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.2.0";
19
20 \include "courante-urtext.ly";
21
22 courante_viola_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef alto;
26         \repeat "volta" 2 {
27                 \partial 16;
28                 s16
29                 s2.*15
30                 s2 s8.
31         } \repeat "volta" 2 {
32                 s16
33                 s2.*15
34                 s16*11
35         }
36 }
37
38 courante_viola_scripts = \notes{
39 }
40
41 courante_viola_staff = \context Staff <
42         \notes \transpose c' \$courante
43         \$courante_viola_global
44         \$courante_viola_scripts
45 >
46
47 \score{
48         \$courante_viola_staff
49         \paper{
50                 \include "scs-paper.ly";
51                 gourlay_maxmeasures = 4.0;
52         }
53         \midi{ \tempo 4 = 55; }
54         \header{ piece = "Courante"; }
55 }
56