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