]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Doc: run makelsr locally
[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
41   doctitlede = "Größe von Holzbläserdiagrammen ändern"
42
43 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
44   texidocfr = "
45 La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
46 à souhait.
47
48 "
49   doctitlefr = "Modification de la taille d'un diagramme pour bois"
50
51
52   texidoc = "
53 The size and thickness of woodwind diagrams can be changed.
54
55 "
56   doctitle = "Changing the size of woodwind diagrams"
57 } % begin verbatim
58
59 \relative c'' {
60   \textLengthOn
61   c1^\markup
62     \woodwind-diagram
63       #'piccolo
64       #'()
65
66   c^\markup
67     \override #'(size . 1.5) {
68       \woodwind-diagram
69         #'piccolo
70         #'()
71     }
72   c^\markup
73     \override #'(thickness . 0.15) {
74       \woodwind-diagram
75         #'piccolo
76         #'()
77     }
78 }