]> 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 04ba72932c48385beb7d7a6541fbca3a4f7030c9..ba89ec62336f06c65f99c45121f88ef818115775 100644 (file)
@@ -1,37 +1,47 @@
 
-\version "1.9.1"
+\version "2.16.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."
+  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.
+"
 
 }
-    \paper { raggedright= ##t }
-
-
-\score {
-    \notes \relative c'{
-       <<g_0>> 4
-       <<g_1>> 4
-       <<c''^5>> 4
-       <<e,^6>> 4
-       <<f,_1>> 4
-       << c-1 e-3>> 4
-       <<c-1 e-3 g-5 >> 4
-       <<c-1 e-2 g-3 b-5 >> 4
-       <<c-1 e-2 g-3 b-5 d-6 f-7 a-8 c-9 >> 4  
-       \property Voice.fingerHorizontalDirection = #LEFT
-       << c-1  es-3 g-5 >> 4
-       \property Voice.fingerHorizontalDirection = #RIGHT
-       << c-1  e-2 g-3 b-5 >> 4\arpeggio
-       \property Voice.fingerHorizontalDirection = #LEFT
-       << c_1  e-2 g-3 b^5 >> 4
-       
-}
+\layout { ragged-right= ##t }
+
+
+
+\relative c'{
+  \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 up)
+  < 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 = #'(right)
+  < c-1  e-2 g-3 b-5 > 8
+
+  \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
 
 }
 
 
 
 
+