]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/menuetto-cello.ly
patch::: 1.1.25.jcn1: jcn1
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / menuetto-cello.ly
1 \header{
2 filename =       "menuetto-cello.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 %piece = "Menuetto I";
6 source =         "?";
7 % opus =         "BWV 1008 no. 5";
8 opus =   "";
9 composer =       "Johann Sebastian Bach (1685-1750)";
10 enteredby =      "JCN";
11 copyright =      "public domain";
12 }
13
14 %{
15  Tested Features:breaking algorithm, chords, multivoice, accents, 
16  dotted slurs
17 %}
18
19 \version "1.0.14";
20
21 \include "menuetto-urtext.ly";
22
23 menuetto_i_cello_global = \notes{
24         \time 3/4;
25         \key f;
26         \clef bass;
27         \repeat 2 {
28                 \skip 2.*8;
29         } \repeat 2 {
30                 \skip 2.*1;
31                 \slurdotted
32                 \skip 2.*14;
33                 s2._"Fine"
34         }
35 }
36
37 menuetto_i_cello_scripts = \notes{
38         \type Voice=i
39         s2.
40         s8^"~"^1_2_4 s8 s4 s^4
41         s4^0_1 s_4 s
42         s2.*5
43         s2^3 s4
44         s4 s8_1 s s4
45         s2.
46         s2 s8^4 s
47         s2.
48         s8 s^2 s^4
49         s_2 s s s_0 s_4 s_1
50         s2.*2
51         s4^3_1
52         s^1_3 s4
53         s2.
54         s4_2 s2
55         s8^2_3 s s s^1 s4^1
56 }
57
58 menuetto_i_cello_staff = \type Staff <
59         \$menuetto_i
60         \$menuetto_i_cello_global
61 %       \$menuetto_i_cello_scripts
62 >
63
64 \score{
65         \$menuetto_i_cello_staff
66         \paper{
67                 \include "scs-paper.ly";
68                 gourlay_maxmeasures = 7.0;
69                 \translator{
70                         \VoiceContext
71                         beamAutoEnd8 = "3/4";
72                 }
73         }
74         \midi{ \tempo 4 = 110; }
75         \header{ piece = "Menuetto I"; }
76 }
77
78 menuetto_ii_cello_global = \notes{
79         \time 3/4;
80         \key D;
81         \clef bass;
82         \repeat 2 {
83                 \skip 2.*8;
84         } \repeat 2 {
85                 \skip 2.*1;
86                 \slurdotted
87                 \skip 2.*14;
88                 s2._"Menuetto I da Capo"
89         }
90
91 }
92
93 menuetto_ii_cello_staff = \type Staff <
94         \$menuetto_ii
95         \$menuetto_ii_cello_global
96 %       \$menuetto_ii_cello_scripts
97 >
98
99 \score{
100         \$menuetto_ii_cello_staff
101         \paper{
102                 \include "scs-paper.ly";
103                 gourlay_maxmeasures = 7.0;
104                 \translator{
105                         \VoiceContext
106                         beamAutoEnd8 = "3/4";
107                 }
108         }
109         \midi{ \tempo 4 = 130; }
110         \header{ piece = "Menuetto II"; }
111 }
112