]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/allemande-cello.ly
5206232e4d109cf6df030740fd44e1b1730cc6b4
[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         \clef bass;
26         \repeat 2 {
27                 \partial 16;
28                 s16
29                 s1*11 |
30                 s2 s4 s8
31                 \partial 16*15;
32                 s16
33         } \repeat 2 {
34                 % urg
35                 s32 \partial 16; s32
36                 s1*11
37                 s16*15
38                 \partial 16*15;
39         }
40 }
41
42 allemande_cello_scripts = \notes{
43 }
44
45 allemande_cello_staff = \type Staff <
46         \$allemande
47         \$allemande_cello_global
48         \$allemande_cello_scripts
49 >
50
51 \score{
52 %{
53         urg, this breaks auto-beam-engraver?
54         really hairy bug: 1.1.23
55         extra bars get encountered!!
56         \paper{
57                 \include "scs-paper.ly";
58                 gourlay_maxmeasures = 4.0;
59         }
60 %}
61         \$allemande_cello_staff
62         % \paper{ \include "scs-paper.ly"; }
63         \paper{
64
65                 linewidth = 180.\mm;
66                 \translator { \BarNumberingStaffContext }
67                 \translator{
68                         \VoiceContext
69                         % add experimental auto-beaming
70                         \consists Auto_beam_engraver;
71                         beamAuto = 1.;
72                         beamAutoEnd8 = "1/4";
73                         beamAutoEnd16 = "1/4";
74                         beamAutoEnd32 = "1/4";
75                 }
76         }
77         \midi{ \tempo 4 = 45; }
78         \header{ piece = "Allemande"; }
79 }