]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / graphical-and-text-woodwind-diagrams.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %%%    Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12
13   texidoces = "
14 En muchos casos, las llaves que no están en la columna central se
15 pueden presentar por el nombre de la llave así como de forma gráfica.
16
17 "
18
19   doctitlees = "Diagramas para viento madera gráficos y textuales"
20
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
31   doctitlede = "Graphische und Text-Holzbläserdiagramme"
32
33
34 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
35   texidocfr = "
36 Dans certains cas, vous pouvez opter pour l'affichage textuel d'une clé
37 située à côté d'un trou plutôt que sa représentation graphique.
38 "
39
40   doctitlefr = "Ajout de texte à un diagramme de doigté"
41
42
43   lsrtags="winds"
44   texidoc="
45 In may cases, the keys other than the central column can be
46 displayed by key name as well as by graphical means.
47 "
48
49   doctitle = "Graphical and text woodwind diagrams"
50 } % begin verbatim
51
52
53 \relative c'' {
54   \textLengthOn
55   c1^\markup
56     \woodwind-diagram
57       #'piccolo
58       #'((cc . (one three))
59          (lh . (gis))
60          (rh . (ees)))
61
62   c^\markup
63     \override #'(graphical . #f) {
64       \woodwind-diagram
65         #'piccolo
66         #'((cc . (one three))
67            (lh . (gis))
68            (rh . (ees)))
69     }
70 }