]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / changing-the-size-of-woodwind-diagrams.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %%%    Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12
13   texidoces = "
14
15 Se puede cambiar el tamaño y grosor de las líneas de los diagramas de
16 posiciones para instrumentos de viento madera.
17
18 "
19
20   doctitlees = "Modificar el tamaño de los diagramas de viento madera"
21
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
29   doctitlede = "Größe von Holzbläserdiagrammen ändern"
30
31
32 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
33   texidocfr = "
34 La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
35 à souhait.
36
37 "
38
39   doctitlefr = "Modification de la taille d'un diagramme pour bois"
40
41
42   lsrtags="winds"
43   texidoc="
44 The size and thickness of woodwind diagrams can be changed.
45 "
46
47   doctitle = "Changing the size of woodwind diagrams"
48 } % begin verbatim
49
50
51 \relative c'' {
52   \textLengthOn
53   c1^\markup
54     \woodwind-diagram
55       #'piccolo
56       #'()
57
58   c^\markup
59     \override #'(size . 1.5) {
60       \woodwind-diagram
61         #'piccolo
62         #'()
63     }
64   c^\markup
65     \override #'(thickness . 0.15) {
66       \woodwind-diagram
67         #'piccolo
68         #'()
69     }
70 }