]> git.donarmstrong.com Git - lilypond.git/blob - input/scsii-menuetto.ly
release: 0.1.35
[lilypond.git] / input / scsii-menuetto.ly
1 \header{
2 filename =       "scsii-menuetto.ly";
3 title =  "Cello Suite II";
4 subtitle = "Part V";
5 instrument = "Menuetto I";              % duh
6 description =    "Cello suite transcribed for Viola";
7 source =         "?";
8 opus =   "BWV 1008 no. 5";
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 %}
17
18 \version "0.1.7";
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         \property Staff.instrument = cello
33         \meter 3/4;
34         \key bes;
35         \octave c';
36
37         \duration 8;
38                 < a2 f2 d2 \f > bes4-.  |
39 %%2
40         \textstyle "finger";            % ugh.
41         
42         < [ bes8^"1" e8 c8_"2"_"4" >
43                 a8 bes8-. g8-. ] a4-.^"4" |
44
45 %%3
46         < d4 'bes4-. > g4-. [ f8-. e8-. ] |
47 %%4
48         < [ f8 'a > e8 d8 cis8-. 'b8-. 'a8-. ]
49 %%5
50         < a2 f2 d2 > bes!4-. |
51 %%6
52         < [ bes8 e8 > a8 bes8-. g8-. ]
53         c'!4-. |
54 %%7
55         < a4-. f4>
56         < d'4-.-\upbow f4 'bes4 >
57         < e'4-.-\downbow g4 'g4 > |
58 %%8
59         < cis'2.-\upbow e2. 'a2. > 
60                 \bar ":|:";
61 %%9
62         \clef "violin";
63         < e'2 a2 \f >
64         [ d'8( e'16 )f'16 ] |
65 %%10
66         < [ e'8 g8 > d' cis'_"2" e' a ()  g8 ] |
67 %%11
68         \multi 2 <  
69                 {\stemup a4()  d'4 cis'4-. }
70                 { \stemdown f2 e4 } > |
71         \stemboth
72 %%12
73         < [ g'8^"4" d8 > f' e' f' d'^"3"()   c' ] |
74 %%13
75         \clef "alto";
76         \multi 2 <
77                  { \stemup bes2 c'4 }
78                  { \stemdown g4()  f4 e4 }% ugh
79         > |
80         \stemboth
81 %%14
82         < [ a8 f8 > g8 a8 f8 ] < d'4-\upbow e4 'bes4 > |
83 %%15
84         < c'4-\downbow f4 'a4 > [ bes8()  a8 g8 a8 ] |
85 %%16
86         [ f( e8 )f a8-. g8-. bes8-. ] |
87 %%17
88         < a2^"0" fis2_"3" > bes4 |
89 %%18
90         < { [ c'8 ()  bes8 c' a8 ] } es8 > fis4 |
91 %%19
92         < d'4-\downbow g4 'bes4 > < c'4-\upbow g4 c4 > < [ bes8 d8 > a8 ] |
93 %%20
94         < { [ c'8 ( bes8 a8 )bes g()  bes8 ] }  d8  g8  > |
95 %%21
96         \multi 2 <  
97                 {\stemup  d'4( \stemup )cis'4 d'4 }  
98                 { \stemdown g2 f4 }
99         > |
100         \stemboth
101 %%22
102         < { [ g8 ()  f8 g8 e8 ] }  cis8  > < f4 d4 > |
103 %%23
104         [ 'g8 g8 ] < e4. 'a4. > d8-\upbow |
105 %%24
106         \textstyle "roman";             % ugh
107         < d2.^"fine" 'a2. 'd2._"3 mins."> 
108         \bar ":|";
109 }
110
111 \score{
112         \melodic{ 
113                 \IImenuetto 
114         }
115         \paper{
116                 linewidth= 150.0\mm;
117                 \output "scsii-menuetto.out";
118         }
119         \midi{ 
120                 \tempo 4 = 120;
121                 \output "scsii-menuetto.midi";
122         }
123 }