]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Doc -- Add woodwind diagrams to documentation
[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   lsrtags="Winds"
9   texidoc="
10 The size and thickness of woodwind diagrams can be changed.
11 "
12
13   doctitle = "Changing the size of woodwind diagrams"
14 } % begin verbatim
15
16
17 \relative c'' {
18   \textLengthOn
19   c1^\markup
20     \woodwind-diagram
21       #'piccolo
22       #'()
23
24   c^\markup
25     \override #'(size . 1.5) {
26       \woodwind-diagram
27         #'piccolo
28         #'()
29     }
30   c^\markup
31     \override #'(thickness . 0.15) {
32       \woodwind-diagram
33         #'piccolo
34         #'()
35     }
36 }