]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/finger-chords.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / finger-chords.ly
index a573f0398882658a7f4e185c4819a287eaf61fab..16c56bb67afee77ff9e34c39617c0fc3f95d72c2 100644 (file)
@@ -1,44 +1,39 @@
 
-\version "2.3.16"
+\version "2.11.51"
 \header {
 
-texidoc = "With the new chord syntax, it is 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 {
-     \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
 
-       
 }
 
-}