]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fingering.ly
db5d5fa3865c24a536e1d07353ae58e2c5e19294
[lilypond.git] / input / regression / fingering.ly
1 \version "1.5.68"
2 \header {
3
4 texidoc = "Automatic fingering tries to put fingering instructions
5 next to noteheads.  scriptHorizontal puts the center fingerings horizontally next to
6 the note heads.
7
8 For this to function, you have to @code{\apply} pitchify-scripts to
9 the music you're dealing with, and you have to do so outside of a
10 @code{\relative} block.  "
11
12 }
13
14 \score {
15
16  \notes\relative c' {
17  c4-4
18   <c-1 f-4>
19   < c-1 e-2 g-3  b-4 >
20 \apply #pitchify-scripts \relative c'  { c4-4
21   <c-1 f-4>
22  < c-1 e-2 g-3  b-4 >
23  \property Voice.scriptHorizontal = ##t
24    <c-1 f-4>
25    <c-1 f-4 a-5>   
26  < c-1 e-2 g-3  b-4 >   
27  } } }