]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fret-diagrams-string-frets.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / fret-diagrams-string-frets.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc="
5 Number of frets and number of strings can be changed from the
6 defaults.
7
8 "
9 }
10
11 \layout { ragged-right = ##t }
12
13 <<
14   \chords {
15     d1 |
16     a1
17   }
18
19   \new Voice {
20     \textLengthOn
21
22     % Simple Guitar D diagram with defaults
23
24     d'1 ^\markup {
25       \fret-diagram #"6-x;5-x;4-o;3-2-1;2-3-2;1-2-3;"
26     } |
27
28     % A chord for ukulele -- change both string and fret count
29     a'1 ^\markup {
30       \fret-diagram #"w:4;h:5;4-2-2;3-1-1;2-o;1-o;"
31     }
32   }
33 >>
34
35