]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/graphical-and-text-woodwind-diagrams.ly
9ae7ad6183a04cde5877a44f895b274ae66a6aa1
[lilypond.git] / Documentation / snippets / new / graphical-and-text-woodwind-diagrams.ly
1 \version "2.13.36"
2
3 \header {
4   lsrtags="winds"
5   texidoc="
6 In may cases, the keys other than the central column can be
7 displayed by key name as well as by graphical means.
8 "
9
10   doctitle = "Graphical and text woodwind diagrams"
11 }
12
13 \relative c'' {
14   \textLengthOn
15   c1^\markup
16     \woodwind-diagram
17       #'piccolo
18       #'((cc . (one three))
19          (lh . (gis))
20          (rh . (ees)))
21
22   c^\markup
23     \override #'(graphical . #f) {
24       \woodwind-diagram
25         #'piccolo
26         #'((cc . (one three))
27            (lh . (gis))
28            (rh . (ees)))
29     }
30 }