]> git.donarmstrong.com Git - lilypond.git/blob - input/scsii-menuetto.ly
release: 0.1.7
[lilypond.git] / input / scsii-menuetto.ly
1 %{MudelaHeader
2
3  filename: scsii-menuetto.ly
4  title: Solo Cello Suites, Suite II part V, Menuetto I
5  description: Cello suite transcribed for Viola
6  source: ?
7  opus: BWV 1008 no. 5
8  composers: Johann Sebastian Bach (1685-1750)
9  entered-by: JCN
10  copyright: public domain
11
12  Tested Features:breaking algorithm, chords, multivoice, accents
13
14
15 EndMudelaHeader
16 %}
17
18 \version "0.1.1";
19
20 %% Stuff from MPP version
21 % \lefttitle{Menuetto}
22 % \tempo{Moderato}
23 % \metron{4=120}
24 %
25 % \key\F                % \key is F ( f-major )
26 %
27 % \slope{30}            % Fool MusiXTeX into 30 / 10 steeper beam
28 %               % because piece is set very tightly
29
30 IImenuetto = \melodic{
31         \clef"alto";
32         \meter 3/4;
33         \key bes;
34         \octave c';
35
36         \duration 8;
37                 < a2 f2 d2 \f > bes4-.  |
38 %%2
39         < [ bes8^"1" e c_"2"_"4" >
40                 a bes-. g-. ] a4-.^"4" |
41 %%3
42         < d4 'bes4-. > g4-. [ f8-. e-. ] |
43 %%4
44         < [ f 'a > e d cis-. 'b-. 'a-. ]
45 %%5
46         < a2 f2 d2 > bes!4-. |
47 %%6
48         < [ bes8 e > a bes-. g-. ]
49         c'!4-. |
50 %%7
51         < a4-. f4>
52         < d'4-.-\upbow f4 'bes4 >
53         < e'4-.-\downbow g4 'g4 > |
54 %%8
55         < cis'2.-\upbow e2. 'a2. > 
56                 \bar ":|:";
57 %%9
58         \clef "violin";
59         < e'2 a2 \f >
60         [ d'8( e'16 )f'16 ] |
61 %%10
62         < [ e'8 g > d' cis'_"2" e' a~  g ] |
63 %%11
64         < \multi 2;  
65                 {\stem \up; a4~  d'4 cis'4-. }
66                 { \stem \down; f2 e4 } > |
67 %%12
68         < [ g'8^"4" d > f' e' f' d'^"3"~   c' ] |
69 %%13
70         \clef "alto";
71         < \multi 2;
72                  { \stem \up; bes2 c'4 }
73                  { \stem \down; g4~  f4 e4 }% ugh
74         > |
75 %%14
76         < [ a8 f > g a f ] < d'4-\upbow e4 'bes4 > |
77 %%15
78         < c'4-\downbow f4 'a4 > [ bes8~  a g a ] |
79 %%16
80         [ f( e )f a-. g-. bes-. ] |
81 %%17
82         < a2^"0" fis2_"3" > bes4 |
83 %%18
84         < { [ c'8~  bes c' a ] } { [ es ] } > fis4 |
85 %%19
86         < d'4-\downbow g4 'bes4 > < c'4-\upbow g4 c4 > < [ bes8 d > a ] |
87 %%20
88         < { [ c'8 ( bes a )bes g~  bes ] } { [ d ] } { [ g ] } > |
89 %%21
90         < \multi 2;  
91                 {\stem \up;  d'4 (\stem \up; ) cis'4 d'4 }  
92                 { \stem \down; g2 f4 } 
93         > |
94 %%22
95         < { [ g8 ~  f g e ] } { [ cis ] } > < f4 d4 > |
96 %%23
97         [ 'g8 g ] < e4. 'a4. > d-\upbow |
98 %%24
99         < d2.^"fine" 'a2. 'd2._"3 mins."> 
100         \bar ":|";
101 %% \tighten             % use one line less
102         
103 }
104
105 \score{
106         \melodic{ 
107                 \id "Staff" "cello"; \IImenuetto 
108         }
109         \paper{
110                 unitspace= 9.0\mm  ;% to get lily to use only three lines
111                 geometric= 1.40;
112                 linewidth= 195.0\mm;
113                 \output "scsii-menuetto.out";
114         }
115         \midi{ 
116                 \tempo 4 = 120;
117                 \output "scsii-menuetto.midi";
118         }
119 }