]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / changing-the-size-of-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
16 Se puede cambiar el tamaño y grosor de las líneas de los diagramas de
17 posiciones para instrumentos de viento madera.
18
19 "
20
21   doctitlees = "Modificar el tamaño de los diagramas de viento madera"
22 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
23
24
25   texidocde="
26 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
27 "
28 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
29
30
31   texidocde="
32 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
33 "
34 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
35
36
37   texidocde="
38 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
39 "
40 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
41
42
43   texidocde="
44 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
45 "
46
47   doctitlede = "Größe von Holzbläserdiagrammen ändern"
48
49 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
50   texidocfr = "
51 La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
52 à souhait.
53
54 "
55   doctitlefr = "Modification de la taille d'un diagramme pour bois"
56
57
58   texidoc = "
59 The size and thickness of woodwind diagrams can be changed.
60
61 "
62   doctitle = "Changing the size of woodwind diagrams"
63 } % begin verbatim
64
65 \relative c'' {
66   \textLengthOn
67   c1^\markup
68     \woodwind-diagram
69       #'piccolo
70       #'()
71
72   c^\markup
73     \override #'(size . 1.5) {
74       \woodwind-diagram
75         #'piccolo
76         #'()
77     }
78   c^\markup
79     \override #'(thickness . 0.15) {
80       \woodwind-diagram
81         #'piccolo
82         #'()
83     }
84 }