]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/finger-chords.ly
Merge branch 'stable/2.16' into staging
[lilypond.git] / input / regression / finger-chords.ly
index 8375294da5b4f9c4a83eb9ec361218c1591d44f6..ba89ec62336f06c65f99c45121f88ef818115775 100644 (file)
@@ -1,44 +1,46 @@
 
-\version "2.4.0"
+\version "2.16.0"
 \header {
 
-texidoc = "With the new chord syntax, it is possible to associate
-fingerings uniquely with notes. This makes horizontal fingering much
-easier to process."
+  texidoc = "It is possible to associate
+fingerings uniquely with notes. This makes it possible to add
+horizontal fingerings to notes. Fingering clears stems and flags
+if @code{'add-stem-support} is set.
+"
 
 }
-    \layout { raggedright= ##t }
+\layout { ragged-right= ##t }
 
 
-\score {
-     \relative c'{
 
-       %% 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 
+\relative c'{
+  \set fingeringOrientations = #'(left)
+  < c-1  e-2 g-3 b-5 > 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
 
-       \set fingeringOrientations = #'(down 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 up)
-       < c-1  e-2 g-3 b-5 > 4
+  \once \override Fingering  #'staff-padding = #'()
+  < 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 = #'(up 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 > 8
 
-       \set fingeringOrientations = #'(right)
-       < c-1  e-2 g-3 b-5 > 4
+  \override Fingering #'add-stem-support = ##t
+  \set fingeringOrientations = #'(up right)
+  < c-1  e-2 g-3 b-5 > 4.
 
+  \set fingeringOrientations = #'(right)
+  < c-1  e-2 g-3 b-5 > 8
 
-       
 }
 
-}