]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/prelude-cello.ly
release: 1.0.1
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / prelude-cello.ly
1 \header{
2 filename =       "prelude-cello.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 piece = "Pr\\'elude";           % duh
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 "prelude-urtext.ly";
21
22 prelude_cello_global = \melodic{
23         \time 3/4;
24         \key f;
25         \clef bass;
26         \skip 2.*63;
27         \bar "|.";
28 }
29
30 prelude_cello_scripts = \melodic{
31 }
32
33 prelude_cello_staff = \type Staff <
34         \$prelude
35         \$prelude_cello_global
36         \$prelude_cello_scripts
37 >
38
39 \score{
40         \$prelude_cello_staff
41         \include "scs-paper.ly";
42         \midi{ \tempo 4 = 40; }
43 }
44