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