]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
2516345fc04a4d0b4c560408c3eb68b5ad852924
[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.36
5 \version "2.13.40"
6
7 \header {
8 %%%    Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce
9
10   texidoces = "
11 En muchos casos, las llaves que no están en la columna central se
12 pueden presentar por el nombre de la llave así como de forma gráfica.
13
14 "
15
16   doctitlees = "Diagramas para viento madera gráficos y textuales"
17
18 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
19
20
21   texidocde="
22 In vielen Fällen können die nicht in der mittleren Reihe befindlichen
23 Löcher dargestellt werden, indem man die Lochbezeichnung oder
24 graphische Zeichen benutzt.
25
26 "
27
28   doctitlede = "Graphische und Text-Holzbläserdiagramme"
29
30
31 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
32   texidocfr = "
33 Dans certains cas, vous pouvez opter pour l'affichage textuel d'une clé
34 située à côté d'un trou plutôt que sa représentation graphique.
35 "
36
37   doctitlefr = "Ajout de texte à un diagramme de doigté"
38
39
40   lsrtags="winds"
41   texidoc="
42 In may cases, the keys other than the central column can be
43 displayed by key name as well as by graphical means.
44 "
45
46   doctitle = "Graphical and text woodwind diagrams"
47 } % begin verbatim
48
49
50 \relative c'' {
51   \textLengthOn
52   c1^\markup
53     \woodwind-diagram
54       #'piccolo
55       #'((cc . (one three))
56          (lh . (gis))
57          (rh . (ees)))
58
59   c^\markup
60     \override #'(graphical . #f) {
61       \woodwind-diagram
62         #'piccolo
63         #'((cc . (one three))
64            (lh . (gis))
65            (rh . (ees)))
66     }
67 }