]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
198a56144ae52b46d2771b77777d34cd99ea26e3
[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
23 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
24
25
26   texidocde="
27 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
28 "
29
30   doctitlede = "Größe von Holzbläserdiagrammen ändern"
31
32
33 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
34   texidocfr = "
35 La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
36 à souhait.
37
38 "
39   doctitlefr = "Modification de la taille d'un diagramme pour bois"
40
41
42   texidoc = "
43 The size and thickness of woodwind diagrams can be changed.
44
45 "
46   doctitle = "Changing the size of woodwind diagrams"
47 } % begin verbatim
48
49 \relative c'' {
50   \textLengthOn
51   c1^\markup
52     \woodwind-diagram
53       #'piccolo
54       #'()
55
56   c^\markup
57     \override #'(size . 1.5) {
58       \woodwind-diagram
59         #'piccolo
60         #'()
61     }
62   c^\markup
63     \override #'(thickness . 0.15) {
64       \woodwind-diagram
65         #'piccolo
66         #'()
67     }
68 }