]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-viola.ly
864fb0d7b39a731c864d4452c6fc8843336e328b
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / sarabande-viola.ly
1 \header{
2 filename =       "sarabande-viola.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 "1.0.0";
19
20 \include "sarabande-urtext.ly";
21
22 sarabande_viola_global = \melodic{
23         \time 3/4;
24         \key f;
25         \clef alto;
26         \skip 2.*12;
27         \bar ":|:";
28         \skip 2.*16;
29         \bar ":|";
30 }
31
32 sarabande_viola_scripts = \melodic{
33 }
34
35 sarabande_viola_staff = \type Staff <
36         \melodic \transpose c' \$sarabande
37         \$sarabande_viola_global
38         \$sarabande_viola_scripts
39 >
40
41 \score{
42         \$sarabande_viola_staff
43         \include "scs-paper.ly";
44         \midi{ \tempo 4 = 40; }
45         \header{ piece = "Sarabande"; }
46 }
47