lessons/LeftHandFingerExercises: spider.ly

File spider.ly, 1.3 KB (added by uri, 15 years ago)

"Паук" Дж.Патитуччи, исходник в LilyPond

Line 
1\version "2.12.1"
2
3% European system (A B H C D E F G)
4\include "deutsch.ly"
5
6% Short alias for \rightHandFinger
7#(define RH rightHandFinger)
8
9\header{
10  title="Паук"
11  composer="Дж.ПатОтуччО"
12}
13
14music = \relative c' {
15  <e-1\2>8\startTextSpan <h'-3\1> <f-2\2> <c'-4\1> <fis,-3\2> <a-1\1> <g-4\2> <b-2\1>
16  <c,-1\3> <h'-3\1> <cis,-2\3> <c'-4\1> <d,-3\3> <a'-1\1> <dis,-4\3> <b'-3\1>
17  <g,-1\4> <h'-3\1> <gis,-2\4> <c'-4\1> <a,-3\4> <a'-1\1> <ais,-4\4> <b'-3\1>
18  <d,,-1\5> <h''-3\1> <dis,,-2\5> <c''-4\1> <e,,-3\5> <a'-1\1> <f,-4\5> <b'-3\1>
19  <a,,-1\6> <h''-3\1> <ais,,-2\6> <c''-4\1> <h,,-3\6> <a''-1\1> <c,,-4\6> <b''-3\1>
20  \stopTextSpan
21  \bar ":|"
22}
23
24\score {
25  <<
26    \new Staff {
27      \clef "G_8"
28      % Overrides line ending
29      \override TextSpanner #'bound-details #'right #'text = \markup { \draw-line #'( 0 . .5) }
30      % Nice style of the dashed line
31      \override TextSpanner #'dash-fraction = #0.4
32      \override TextSpanner #'dash-period = #2.0
33      \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
34      \textSpannerDown
35      \override TextSpanner #'(bound-details left text) = "V "
36      \music
37    }
38    \new TabStaff {
39      \override TextSpanner #'dash-period = #-1
40      \music
41    }
42  >>
43  \layout{}
44  \midi{}
45}