]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/prelude-viola.ly
release: 1.1.24
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / prelude-viola.ly
1 \header{
2 filename =       "prelude-viola.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.14";
19
20 \include "prelude-urtext.ly";
21
22 prelude_viola_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef alto;
26         \skip 2.*63;
27         \bar "|.";
28 }
29
30 prelude_viola_scripts = \notes{
31 }
32
33 prelude_viola_staff = \type Staff <
34         \notes \transpose c' \$prelude
35         \$prelude_viola_global
36         \$prelude_viola_scripts
37 >
38
39 \score{
40         \$prelude_viola_staff
41         \paper{
42                 \include "scs-paper.ly";
43                 gourlay_maxmeasures = 7.0;
44         }
45         \midi{ \tempo 4 = 40; }
46         \header{ piece = "Pr\\'elude"; }
47 }
48