]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/finger-chords.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / finger-chords.ly
index d7684f77c9f96663f0492e533470c03eb761153f..233a628b540e93e0e3c53bd40c5cb17ab744f4a9 100644 (file)
@@ -1,44 +1,39 @@
 
-\version "2.1.22"
+\version "2.14.0"
 \header {
 
-texidoc = "With the new chord syntax it's possible to associate
-fingerings uniquely with notes. This makes horizontal fingering much
-easier to process."
-
-}
-    \paper { raggedright= ##t }
+  texidoc = "It is possible to associate
+fingerings uniquely with notes. This makes it possible to add
+horizontal fingerings to notes.
 
+"
 
-\score {
-    \notes \relative c'{
+}
+\layout { ragged-right= ##t }
 
-       %% input order is not 1 2 3 , output is.
-       <c-1 g'-3 e-2  b'-4 d-5 f-6 a-7 c-8 > 4 
 
-       \set fingeringOrientations = #'(left)
-       < c-1  e-2 g-3 b-5 > 4
 
-       \set fingeringOrientations = #'(down left)
-       < c-1  e-2 g-3 b-5 > 4
+\relative c'{
+  \set fingeringOrientations = #'(left)
+  < c-1  e-2 g-3 b-5 > 4
 
-       \set fingeringOrientations = #'(down left up)
-       < c-1  e-2 g-3 b-5 > 4
+  \set fingeringOrientations = #'(down left)
+  < c-1  e-2 g-3 b-5 > 4
 
-       \once \override Fingering  #'staff-padding = #'()
-       < c-1  e-2 g-3 b-5 > 4
+  \set fingeringOrientations = #'(down left up)
+  < c-1  e-2 g-3 b-5 > 4
 
-       \set fingeringOrientations = #'(up left)
-       < c-1  e-2 g-3 b-5 > 4
+  \once \override Fingering  #'staff-padding = #'()
+  < c-1  e-2 g-3 b-5 > 4
 
-       \set fingeringOrientations = #'(right)
-       < c-1  e-2 g-3 b-5 > 4
+  \set fingeringOrientations = #'(up left)
+  < c-1  e-2 g-3 b-5 > 4
 
+  \set fingeringOrientations = #'(right)
+  < c-1  e-2 g-3 b-5 > 4
 
-       
 }
 
-}