]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / graphical-and-text-woodwind-diagrams.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "winds"
11
12   texidoc = "
13 In many cases, the keys other than the central column can be displayed
14 by key name as well as by graphical means.
15
16 "
17   doctitle = "Graphical and text woodwind diagrams"
18 } % begin verbatim
19
20 \relative c'' {
21   \textLengthOn
22   c1^\markup
23     \woodwind-diagram
24       #'piccolo
25       #'((cc . (one three))
26          (lh . (gis))
27          (rh . (ees)))
28
29   c^\markup
30     \override #'(graphical . #f) {
31       \woodwind-diagram
32         #'piccolo
33         #'((cc . (one three))
34            (lh . (gis))
35            (rh . (ees)))
36     }
37 }