]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/gnossienne-4.ly
patch::: 1.1.21.jcn1: Re: gnossienne-4 in pats
[lilypond.git] / mutopia / gnossienne-4.ly
1 \header {
2   filename =    "gnossienne-4.ly";
3   title =       "Gnossienne";
4   subtitle =    "4";
5   source =      "";
6   composer =    "Erik Satie (1866-1925)";
7   enteredby =   "jcn";
8   copyright =   "Public Domain";
9 }
10
11 %{
12  Tested Features: cross staff beams and slurs
13 %}
14
15 \version "1.0.14";
16
17 \include "nederlands.ly"
18
19 global = \notes {
20   \key a \minor;
21   \time 6/4;
22   \cadenza 1;
23   \property Staff.timeSignatureStyle = ""
24 }
25   
26 one = \type Voice=one \notes \relative c'''{
27   \clef violin;
28   r2 r r r r r 
29   r4 [a8--(\< a--] [a-- a-- c-- \!b--] [a--\> fis g \!)e]
30 }
31
32 % upper staff
33 us = {
34   \type Staff=treble
35   \skip 1*0;
36 }
37
38 % lower staff
39 ls = {
40   \type Staff=bass
41   \skip 1*0;
42 }
43
44 two = \type Voice=two \notes \relative c{
45   \stemdown
46   \property Staff.slurydirection = 1
47 % hmm
48 %  [d,8( a' d f] [a \us d f d] \ls [a f d )a]
49   [d,8( a' d f] [a \translator Staff=treble d f d] 
50     \translator Staff=bass [a f d )a]
51   [d,8( a' d f] [a \translator Staff=treble d f d] 
52     \translator Staff=bass [a f d )a]
53   [d,8( a' d f] [a \translator Staff=treble d f d] 
54     \skip 8*0;
55     \translator Staff=bass [a f d )a]
56 }
57
58 \score {
59     \type GrandStaff < 
60       \type Staff = treble < 
61         \global 
62         \one
63       >
64       \type Staff = bass <
65         \global
66         \clef bass;
67         \two
68       >
69     >
70
71   \paper {
72     gourlay_maxmeasures = 4.;
73     indent = 8.\mm;
74     textheight = 295.\mm;
75
76     % no slur damping
77     slur_slope_damping = 10.0;
78
79     %hmm
80 %    \translator { \BarNumberingScoreContext }
81 %    \translator { \BarNumberingStaffContext }
82 %  \translator{ \OrchestralScoreContext }
83     \translator{ \OrchestralScoreContext }
84     \translator{ 
85       \GrandStaffContext
86       minVerticalAlign = 3.0*\staffheight;
87       maxVerticalAlign = 3.0*\staffheight;
88     }
89   }
90 %  \header{
91 %         opus = "BWV 847";
92 %  }
93
94   \midi {
95     \tempo 4 = 54;
96   }
97 }
98
99 % EOF