]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fret-boards.ly
Make the length of beamlets configurable.
[lilypond.git] / input / regression / fret-boards.ly
1
2 \header {
3
4   texidoc = "Frets can be assigned automatically. The results will be
5 best when one string number is indicated in advance "
6   
7 }
8
9 \version "2.11.51"
10
11 foo = \relative c {
12   <d\5 fis a d fis>_\markup {
13     \fret-diagram-terse #"x;5;4;2;3;2;"
14   }
15 }
16
17 <<
18   \new FretBoards {
19     \set instrumentName = "autofrets"
20     \foo
21
22   }
23   \new Staff {
24     \clef "G_8"
25     \set stringNumberOrientations = #'(left)
26     \set fingeringOrientations = #'(right)
27     \foo
28   }
29
30 >>
31
32