]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Petites-Preludes/preludes-2.ly
patch::: 1.3.59.uu2.jcn1
[lilypond.git] / mutopia / J.S.Bach / Petites-Preludes / preludes-2.ly
1 %{
2
3  Six Petits Preludes,
4  Collection Johann Peter Kellner
5  ca 1703 - 1707
6
7
8
9  Kellner was a student of Bach's.  
10  
11 %}
12
13 \header{
14   copyright =    "public domain";
15   source = "Ed. Henry Lemoine Urtext";
16   title =        "Pr\\\"aludum";
17   composer =     "Johann Sebastian Bach (1685-1750)";
18   enteredby =    "jcn,hwn";
19
20   
21   opus= "393";
22   % mutopia headers.
23   mutopiatitle = "Prelude";
24   mutopiacomposer = "J.S.Bach";
25   mutopiaopus = "BWV939";
26   mutopiainstrument = "Piano";
27   style = "baroque";
28   copyright = "Public Domain";
29
30   maintainer = "Jan Nieuwenhuizen";
31   maintainer_email = "janneke@gnu.org";
32   tagline =    "\\\\This music is part of the Mutopia project, http://sca.uwaterloo.ca/Mutopia/\\\\It has been typeset and placed in the public domain by " + \maintainer + ".\\\\Unrestricted modification and redistribution is permitted and encouraged - copy this music and share it!";
33   maintainer = "janneke@gnu.org";
34   lastupdated = "1999/Nov/14";
35 }
36
37
38
39 %{
40 Old versions of LilyPond include this prelude with dynamics and fingerings.
41 %}
42
43
44
45 \version "1.3.42";
46 upper = \context Staff \notes\relative c{
47         \context Voice=i
48         \property Voice . textStyle = "italic"
49         r8 c' e g  e c bes' g |
50         a c, f a  f c c' a |
51         b g b d  b g f' d |
52         <e2 c g>
53         r4
54         <e c g >
55         <d2 c a>
56         r4
57         <d c a>
58         < { \stemup [d8 g, 8 b d] }
59           \context Voice = ii < \stemdown b g >
60         >
61         
62         <b4 g>
63         <e b>
64         c2
65         r4
66         <
67                 { \stemup c ~ c8} 
68                 \context Voice=ii { \stemdown <e,4 a> ~ <e8 a> }
69         >
70         \stemboth 
71         d, fis a  fis d c' a |
72         b g b d  b g f'! d |
73         e g, c e  c g g' e |
74         fis a, c fis  c a a' fis |
75         <g2 d b>
76         r4 b,4 |
77         c8 e g c  g e bes' g |
78         a16 g f e  d c b ! a 
79         b g a b  c d e f |
80         g4
81         <g,2 c>
82         <d4 b'>
83         <e1 c'>
84         \bar "|.";
85 }
86
87 lower = \context Staff \notes\relative c{
88         \context Voice=i
89         <
90                 { \stemup c1 ~ | c ~ | c }
91                 \context Voice=ii { \stemdown c,1 ~ | c ~ | c }
92         >
93         \stemboth |
94         r8 c e g  e c c' e, |
95         fis d fis a  fis d d' fis, |
96         g2 r4 g |
97         a8 a, c e  c a g' e |
98         fis2 r4 d |
99         g-\mordent-"(\\textsharp)" g, 4 g'-\mordent g, |
100         % mordents in brackets...
101         g'-\mordent g, g'-\mordent g, |
102         g'-\mordent g, g'-\mordent g, |
103         g'8 g, b d  b g f'! d |
104         e c e g  e c c' e, |
105
106         f1 ~ |
107         f8 d e c g'4 g, |
108         c,1
109         \bar "|.";
110 }
111
112 global = \notes{
113         \time 4/4;
114 }
115
116 \score{
117         \context GrandStaff <
118                 \context Staff = upper <
119                         \global
120                         \upper
121                 >
122                 \context Staff = lower <
123                         \global
124                         \clef "bass";
125                         \lower
126                 >
127         >
128         \paper{
129           linewidth = 18.0 \cm;  
130         }
131         \midi{ \tempo 4 = 100; }
132         \header {
133                 opus = "BWV 939";
134                 piece = "2";
135         }
136 }
137