]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / changing-the-size-of-woodwind-diagrams.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "winds"
11
12   texidoc = "
13 The size and thickness of woodwind diagrams can be changed.
14
15 "
16   doctitle = "Changing the size of woodwind diagrams"
17 } % begin verbatim
18
19 \relative c'' {
20   \textLengthOn
21   c1^\markup
22     \woodwind-diagram
23       #'piccolo
24       #'()
25
26   c^\markup
27     \override #'(size . 1.5) {
28       \woodwind-diagram
29         #'piccolo
30         #'()
31     }
32   c^\markup
33     \override #'(thickness . 0.15) {
34       \woodwind-diagram
35         #'piccolo
36         #'()
37     }
38 }