]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/allemande-cello.ly
release: 1.1.15
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / allemande-cello.ly
1 \header{
2 filename =       "allemande-cello.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 %piece = "Allemande";
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.14";
19
20 \include "allemande-urtext.ly";
21
22 allemande_cello_global = \notes{
23         \time 4/4;
24         \key f;
25         \partial 16;
26         \clef bass;
27         \skip 1*11;
28         s2. s8.
29         \bar ":|:";
30         \skip 1*11;
31         s2. s4 s8
32         \bar ":|";
33 }
34
35 allemande_cello_scripts = \notes{
36 }
37
38 allemande_cello_staff = \type Staff <
39         \$allemande
40         \$allemande_cello_global
41         \$allemande_cello_scripts
42 >
43
44 \score{
45         \$allemande_cello_staff
46         \include "scs-paper.ly";
47         \midi{ \tempo 4 = 45; }
48         \header{ piece = "Allemande"; }
49 }
50