]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / graphical-and-text-woodwind-diagrams.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.31
5 \version "2.13.31"
6
7 \header {
8   lsrtags="winds"
9   texidoc="
10 In may cases, the keys other than the central column can be
11 displayed by key name as well as by graphical means.
12 "
13
14   doctitle = "Graphical and text woodwind diagrams"
15 } % begin verbatim
16
17
18 \relative c'' {
19   \textLengthOn
20   c1^\markup
21     \woodwind-diagram
22       #'piccolo
23       #'((cc . (one three))
24          (lh . (gis))
25          (rh . (ees)))
26
27   c^\markup
28     \override #'(graphical . #f) {
29       \woodwind-diagram
30         #'piccolo
31         #'((cc . (one three))
32            (lh . (gis))
33            (rh . (ees)))
34     }
35 }