]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/courante-viola.ly
b21bcca92acb29395b0c1d8800cff1082a5fccb4
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / courante-viola.ly
1 \header{
2 filename =       "courante-viola.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 % piece = "Courante";
6 % opus =         "BWV 1008";
7 opus =   "";
8 composer =       "Johann Sebastian Bach (1685-1750)";
9 enteredby =      "JCN";
10 copyright =      "public domain";
11 }
12
13 %{
14  Tested Features:breaking algorithm, chords, multivoice, accents, 
15  dotted slurs
16 %}
17
18 \version "1.0.14";
19
20 \include "courante-urtext.ly";
21
22 courante_viola_global = \notes{
23         \time 3/4;
24         \key f;
25         \clef alto;
26         \repeat 2 {
27                 \partial 16;
28                 s16
29                 s2.*15
30                 % hmm
31                 s2 s8
32                 \partial 16*11;
33                 s16
34         } \repeat 2 {
35                 % urg
36                 s32 \partial 16; s32
37                 s2.*15
38                 s16*11
39                 \partial 16*11;
40         }
41 }
42
43 courante_viola_scripts = \notes{
44 }
45
46 courante_viola_staff = \type Staff <
47         \notes \transpose c' \$courante
48         \$courante_viola_global
49         \$courante_viola_scripts
50 >
51
52 \score{
53         \$courante_viola_staff
54         %\paper { \include "scs-paper.ly"; }
55         \paper{
56                 linewidth = 180.\mm;
57                 \translator { \BarNumberingStaffContext }
58                 \translator{
59                         \VoiceContext
60                         % add experimental auto-beaming
61                         \consists Auto_beam_engraver;
62                         beamAuto = 1.;
63                         beamAutoEnd8 = "1/4";
64                         beamAutoEnd16 = "1/4";
65                         beamAutoEnd32 = "1/4";
66                 }
67         }
68         \midi{ \tempo 4 = 55; }
69         \header{ piece = "Courante"; }
70 }
71