]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/sarabande-cello.ly
release: 1.1.24
[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.0.14";
19
20 \include "sarabande-urtext.ly";
21
22 sarabande_cello_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef bass;
26         \repeat 2 {
27                 s2.*12
28         } \repeat 2 {
29                 s2.*16
30         }
31 }
32
33 sarabande_cello_scripts = \notes{
34 }
35
36 sarabande_cello_staff = \type Staff <
37         \$sarabande
38         \$sarabande_cello_global
39         \$sarabande_cello_scripts
40 >
41
42 \score{
43         \$sarabande_cello_staff
44         % \paper { \include "scs-paper.ly"; }
45         \paper{
46                 linewidth = 180.\mm;
47                 \translator { \BarNumberingStaffContext }
48                 \translator{
49                         \VoiceContext
50                         % add experimental auto-beaming
51                         \consists Auto_beam_engraver;
52                         beamAuto = 1.;
53                         beamAutoEnd8 = "1/4";
54                         beamAutoEnd16 = "1/4";
55                         beamAutoEnd32 = "1/4";
56                 }
57         }
58         \midi{ \tempo 4 = 40; }
59         \header{ piece = "Sarabande"; }
60 }
61