]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/changing-the-size-of-woodwind-diagrams.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / changing-the-size-of-woodwind-diagrams.ly
1 \version "2.14.0"
2
3 \header {
4   lsrtags="winds"
5   texidoc="
6 The size and thickness of woodwind diagrams can be changed.
7 "
8
9   doctitle = "Changing the size of woodwind diagrams"
10 }
11
12 \relative c'' {
13   \textLengthOn
14   c1^\markup
15     \woodwind-diagram
16       #'piccolo
17       #'()
18
19   c^\markup
20     \override #'(size . 1.5) {
21       \woodwind-diagram
22         #'piccolo
23         #'()
24     }
25   c^\markup
26     \override #'(thickness . 0.15) {
27       \woodwind-diagram
28         #'piccolo
29         #'()
30     }
31 }