]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Merge branch 'master' into lilypond/translation
[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.31
5 \version "2.13.31"
6
7 \header {
8 %%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
9
10
11   texidocde="
12 Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
13 "
14
15   doctitlede = "Größe von Holzbläserdiagrammen ändern"
16
17
18 %% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
19   texidocfr = "
20 La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
21 à souhait.
22
23 "
24
25   doctitlefr = "Modification de la taille d'un diagramme pour bois"
26
27
28   lsrtags="winds"
29   texidoc="
30 The size and thickness of woodwind diagrams can be changed.
31 "
32
33   doctitle = "Changing the size of woodwind diagrams"
34 } % begin verbatim
35
36
37 \relative c'' {
38   \textLengthOn
39   c1^\markup
40     \woodwind-diagram
41       #'piccolo
42       #'()
43
44   c^\markup
45     \override #'(size . 1.5) {
46       \woodwind-diagram
47         #'piccolo
48         #'()
49     }
50   c^\markup
51     \override #'(thickness . 0.15) {
52       \woodwind-diagram
53         #'piccolo
54         #'()
55     }
56 }