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