]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Merge branch '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   lsrtags="winds"
19   texidoc="
20 The size and thickness of woodwind diagrams can be changed.
21 "
22
23   doctitle = "Changing the size of woodwind diagrams"
24 } % begin verbatim
25
26
27 \relative c'' {
28   \textLengthOn
29   c1^\markup
30     \woodwind-diagram
31       #'piccolo
32       #'()
33
34   c^\markup
35     \override #'(size . 1.5) {
36       \woodwind-diagram
37         #'piccolo
38         #'()
39     }
40   c^\markup
41     \override #'(thickness . 0.15) {
42       \woodwind-diagram
43         #'piccolo
44         #'()
45     }
46 }