~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to input/regression/finger-chords.ly

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
\version "2.2.0"
 
2
\version "2.7.39"
3
3
\header {
4
4
 
5
 
texidoc = "With the new chord syntax, it is possible to associate
6
 
fingerings uniquely with notes. This makes horizontal fingering much
7
 
easier to process."
8
 
 
9
 
}
10
 
    \paper { raggedright= ##t }
11
 
 
12
 
 
13
 
\score {
14
 
    \notes \relative c'{
15
 
 
16
 
        %% input order is not 1 2 3 , output is.
17
 
        <c-1 g'-3 e-2  b'-4 d-5 f-6 a-7 c-8 > 4 
18
 
 
19
 
        \set fingeringOrientations = #'(left)
20
 
        < c-1  e-2 g-3 b-5 > 4
21
 
 
22
 
        \set fingeringOrientations = #'(down left)
23
 
        < c-1  e-2 g-3 b-5 > 4
24
 
 
25
 
        \set fingeringOrientations = #'(down left up)
26
 
        < c-1  e-2 g-3 b-5 > 4
27
 
 
28
 
        \once \override Fingering  #'staff-padding = #'()
29
 
        < c-1  e-2 g-3 b-5 > 4
30
 
 
31
 
        \set fingeringOrientations = #'(up left)
32
 
        < c-1  e-2 g-3 b-5 > 4
33
 
 
34
 
        \set fingeringOrientations = #'(right)
35
 
        < c-1  e-2 g-3 b-5 > 4
36
 
 
37
 
 
38
 
        
39
 
}
40
 
 
41
 
}
 
5
  texidoc = "With the new chord syntax, it is possible to associate
 
6
fingerings uniquely with notes. This makes it possible to add
 
7
horizontal fingerings to notes.
 
8
 
 
9
"
 
10
 
 
11
}
 
12
\layout { ragged-right= ##t }
 
13
 
 
14
 
 
15
 
 
16
\relative c'{
 
17
  \set fingeringOrientations = #'(left)
 
18
  < c-1  e-2 g-3 b-5 > 4
 
19
 
 
20
  \set fingeringOrientations = #'(down left)
 
21
  < c-1  e-2 g-3 b-5 > 4
 
22
 
 
23
  \set fingeringOrientations = #'(down left up)
 
24
  < c-1  e-2 g-3 b-5 > 4
 
25
 
 
26
  \once \override Fingering  #'staff-padding = #'()
 
27
  < c-1  e-2 g-3 b-5 > 4
 
28
 
 
29
  \set fingeringOrientations = #'(up left)
 
30
  < c-1  e-2 g-3 b-5 > 4
 
31
 
 
32
  \set fingeringOrientations = #'(right)
 
33
  < c-1  e-2 g-3 b-5 > 4
 
34
 
 
35
}
 
36
 
42
37
 
43
38
 
44
39