]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-cello.ly
2ec74f62578c755ff5b4a49aa52544e75a626abb
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / sarabande-cello.ly
1 \header{
2 filename =       "sarabande-cello.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.2.0";
19
20 \include "sarabande-urtext.ly";
21
22 sarabande_cello_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef bass;
26         \repeat "volta" 2 {
27                 s2.*12
28         } \repeat "volta" 2 {
29                 s2.*16
30         }
31 }
32
33 sarabande_cello_scripts = \notes{
34 }
35
36 sarabande_cello_staff = \context Staff <
37         \$sarabande
38         \$sarabande_cello_global
39         \$sarabande_cello_scripts
40 >
41
42 \score{
43         \$sarabande_cello_staff
44         \paper{
45                 \include "scs-paper.ly";
46                 gourlay_maxmeasures = 5.0;
47         }
48         \midi{ \tempo 4 = 40; }
49         \header{ piece = "Sarabande"; }
50 }
51