]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Allow open strings in chords regardless of finger positions
[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.14.0
8 \version "2.14.0"
9
10 \header {
11 %%%    Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   doctitlefr = "Modification de la taille d'un diagramme pour bois"
39
40
41   lsrtags="winds"
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
50 \relative c'' {
51   \textLengthOn
52   c1^\markup
53     \woodwind-diagram
54       #'piccolo
55       #'()
56
57   c^\markup
58     \override #'(size . 1.5) {
59       \woodwind-diagram
60         #'piccolo
61         #'()
62     }
63   c^\markup
64     \override #'(thickness . 0.15) {
65       \woodwind-diagram
66         #'piccolo
67         #'()
68     }
69 }