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