]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Local updates to LSR July 2012
[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 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
22
23
24   texidocde="
25 In vielen Fällen können die nicht in der mittleren Reihe befindlichen
26 Löcher dargestellt werden, indem man die Lochbezeichnung oder
27 graphische Zeichen benutzt.
28
29 "
30 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
31
32
33   texidocde="
34 In vielen Fällen können die nicht in der mittleren Reihe befindlichen
35 Löcher dargestellt werden, indem man die Lochbezeichnung oder
36 graphische Zeichen benutzt.
37
38 "
39
40   doctitlede = "Graphische und Text-Holzbläserdiagramme"
41
42 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
43   texidocfr = "
44 Dans certains cas, vous pouvez opter pour l'affichage textuel d'une clé
45 située à côté d'un trou plutôt que sa représentation graphique.
46
47 "
48   doctitlefr = "Ajout de texte à un diagramme de doigté"
49
50
51   texidoc = "
52 In many cases, the keys other than the central column can be displayed
53 by key name as well as by graphical means.
54
55 "
56   doctitle = "Graphical and text woodwind diagrams"
57 } % begin verbatim
58
59 \relative c'' {
60   \textLengthOn
61   c1^\markup
62     \woodwind-diagram
63       #'piccolo
64       #'((cc . (one three))
65          (lh . (gis))
66          (rh . (ees)))
67
68   c^\markup
69     \override #'(graphical . #f) {
70       \woodwind-diagram
71         #'piccolo
72         #'((cc . (one three))
73            (lh . (gis))
74            (rh . (ees)))
75     }
76 }