]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/scsii-menuetto.ly
aaf38d3c21b81f7399b73a80a8571de25f19353e
[lilypond.git] / mutopia / J.S.Bach / scsii-menuetto.ly
1 \header{
2 filename =       "scsii-menuetto.ly";
3 title =  "Cello Suite II, Menuetto I";
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  dotted slurs
17 %}
18
19 \version "0.1.10";
20
21 %% Stuff from MPP version
22 % \lefttitle{Menuetto}
23 % \tempo{Moderato}
24 % \metron{4=120}
25 %
26 % \key\F                % \key is F( f-major )
27 %
28 % \slope{30}            % Fool MusiXTeX into 30 / 10 steeper beam
29 %               % because piece is set very tightly
30
31 %{
32   This file has a long heritage.
33   It should probably be rewritten as two separate voices.
34 %}
35
36
37 IImenuetto = \melodic{
38         \clef"alto";
39         \property Staff.instrument = cello
40         \meter 3/4;
41         \key bes;
42         \octave c';
43
44         <a2 f d \f> bes4-.  |
45         <{\voiceone; [bes8^1 a bes-. g-.] a4-.^4 } {\voicetwo; <e8_2 c_4> }> |
46         \onevoice;
47         <d4 'bes-.> g-. [f8-. e-.] |
48         <{\voiceone; [f8( e )d cis-. 'b-. 'a-.] } {\voicetwo; 'a8 }> |
49         \onevoice;
50         <a2 f d> bes!4-. |
51         <{\voiceone; [bes8 a bes-. g-.] } {\voicetwo; e8 }>
52         \onevoice;
53         c'!4-. | <a-. f> <d'-.-\upbow f 'bes>
54         <e'-.-\downbow g 'g> | <cis'2.-\upbow e 'a> \bar ":|:";
55         \clef "violin";
56         <e'2 a\f>
57         [d'8( e'16 )f'] |
58         \slurdotted;
59         <{\voiceone; [e'8( d' cis'_2 )e' a( )g] } {\voicetwo; g8 }> |
60         \onevoice;
61         <{\voiceone; a4 ~ d' cis'-. } {\voicetwo; f2 e4 }> |
62         \onevoice;
63         <{\voiceone; [g'8^4( f' e' )f' d'^3( ) c'] } {\voicetwo; d8 }> |
64         \onevoice;
65         \clef "alto";
66         <{\voiceone; bes2 c'4 } {\voicetwo; g4 ~ f e }> |
67         \onevoice;
68         <{\voiceone; [a8 g a f] } {\voicetwo; f8 }>
69         \onevoice;
70         <d'4-\upbow e 'bes> |
71         <c'-\downbow f 'a> [bes8 a g a] |
72         [f8( e )f a-. g-. bes-.] |
73         <a2^"0"^\trill fis_3> bes4 |
74         <{\voiceone; [c'8 bes c' a] } {\voicetwo; es8 }>
75         \onevoice;
76         fis4^\trill |
77         <d'4-\downbow g 'bes> <c'-\upbow g c> <[bes8( d> )a] |
78         <{\voiceone; [c'8( bes a )bes g( )bes] } {\voicetwo; <d8 g> }> |
79         \onevoice;
80         <{\voiceone; d'4 ~ cis' d' }  {\voicetwo; g2 f4 }> |
81         \onevoice;
82         <{\voiceone; [g8 f g e] f4 } {\voicetwo; cis8 d4 }> |
83         \onevoice;
84         ['g8 g] <'a4. { e^\trill ~ d8-\upbow }> |
85         \textstyle "italic";            % ugh
86         <d2._"fine" 'a 'd> \bar ":|";
87 }
88
89 \score{
90         \melodic{ 
91                 \IImenuetto 
92         }
93         \paper{
94                 linewidth= 185.0\mm;
95         }
96         \midi{ 
97                 \tempo 4 = 120;
98         }
99 }