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