]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Allow user-defined predefined fretboard hash-table
[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.36"
6
7 \header {
8 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
9
10
11   texidocde="
12 In vielen Fällen können die nicht in der mittleren Reihe befindlichen
13 Löcher dargestellt werden, indem man die Lochbezeichnung oder
14 graphische Zeichen benutzt.
15
16 "
17
18   doctitlede = "Graphische und Text-Holzbläserdiagramme"
19
20
21   lsrtags="winds"
22   texidoc="
23 In may cases, the keys other than the central column can be
24 displayed by key name as well as by graphical means.
25 "
26
27   doctitle = "Graphical and text woodwind diagrams"
28 } % begin verbatim
29
30
31 \relative c'' {
32   \textLengthOn
33   c1^\markup
34     \woodwind-diagram
35       #'piccolo
36       #'((cc . (one three))
37          (lh . (gis))
38          (rh . (ees)))
39
40   c^\markup
41     \override #'(graphical . #f) {
42       \woodwind-diagram
43         #'piccolo
44         #'((cc . (one three))
45            (lh . (gis))
46            (rh . (ees)))
47     }
48 }