]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/graphical-and-text-woodwind-diagrams.ly
Merge branch 'master' into lilypond/translation
[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.31"
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 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
22   texidocfr = "
23 Dans certains cas, vous pouvez opter pour l'affichage textuel d'une clé
24 située à côté d'un trou plutôt que sa représentation graphique.
25 "
26
27   doctitlefr = "Ajout de texte à un diagramme de doigté"
28
29
30   lsrtags="winds"
31   texidoc="
32 In may cases, the keys other than the central column can be
33 displayed by key name as well as by graphical means.
34 "
35
36   doctitle = "Graphical and text woodwind diagrams"
37 } % begin verbatim
38
39
40 \relative c'' {
41   \textLengthOn
42   c1^\markup
43     \woodwind-diagram
44       #'piccolo
45       #'((cc . (one three))
46          (lh . (gis))
47          (rh . (ees)))
48
49   c^\markup
50     \override #'(graphical . #f) {
51       \woodwind-diagram
52         #'piccolo
53         #'((cc . (one three))
54            (lh . (gis))
55            (rh . (ees)))
56     }
57 }