]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/gigue-viola.ly
b52a1c798f88175cdcaed1f7b91fe5ae6f2be304
[lilypond.git] / mutopia / J.S.Bach / Solo-Cello-Suites / gigue-viola.ly
1 \header{
2 filename =       "gigue-viola.ly";
3 title =  "Solo Cello Suites";
4 subtitle = "Suite II";
5 % piece = "Gigue";
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 "gigue-urtext.ly";
21
22 gigue_viola_global = \notes{
23         \time 3/8;
24         \key f;
25         \clef alto;
26         \repeat 2 {
27                 \partial 8;
28                 s8
29                 s4.*31
30                 s4
31                 \partial 4;
32         } \repeat 2 {
33                 % urg
34                 s16 \partial 8; s16
35                 s4.*43
36                 s4
37                 \partial 4;
38         }
39 }
40
41 gigue_viola_scripts = \notes{
42 }
43
44 gigue_viola_staff = \type Staff <
45         \notes \transpose c' \$gigue
46         \$gigue_viola_global
47         \$gigue_viola_scripts
48 >
49
50 \score{
51         \$gigue_viola_staff
52         % \paper { \include "scs-paper.ly"; }
53         \paper{
54                 linewidth = 180.\mm;
55                 \translator { \BarNumberingStaffContext }
56                 \translator{
57                         \VoiceContext
58                         % add experimental auto-beaming
59                         \consists Auto_beam_engraver;
60                         beamAuto = 1.;
61                         beamAutoEnd8 = "3/4";
62                         beamAutoEnd16 = "3/4";
63                 }
64         }
65         \midi{ \tempo 4 = 60; }
66         \header{ piece = "Gigue"; }
67 }
68