]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/J.S.Bach/Solo-Cello-Suites/gigue-viola.ly
release: 1.2.0
[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.2.0";
19
20 \include "gigue-urtext.ly";
21
22 gigue_viola_global = \notes{
23         \time 3/8;
24         \key f;
25         \clef alto;
26         \repeat "volta" 2 {
27                 \partial 8;
28                 s8
29                 s4.*31
30                 s4
31                 \partial 4;
32         } \repeat "volta" 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 = \context Staff <
45         \notes \transpose c' \$gigue
46         \$gigue_viola_global
47         \$gigue_viola_scripts
48 >
49
50 \score{
51         \$gigue_viola_staff
52         \paper{
53                 \include "scs-paper.ly";
54                 gourlay_maxmeasures = 7.0;
55                 \translator{
56                         \VoiceContext
57                         beamAutoEnd_8 = "3/4";
58                         beamAutoEnd_16 = "3/4";
59                 }
60         }
61         \midi{ \tempo 4 = 60; }
62         \header{ piece = "Gigue"; }
63 }
64