]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-hairpins-in-various-styles.ly
Doc: add snippet showing flared and constante hairpins (3235)
[lilypond.git] / Documentation / snippets / printing-hairpins-in-various-styles.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation\snippets\new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.17.14
8 \version "2.17.14"
9
10 \header {
11   lsrtags = "expressive-marks"
12
13   texidoc = "
14 Hairpin dynamics may be created in a variety of styles
15
16 "
17   doctitle = "Printing hairpins in various styles"
18 } % begin verbatim
19
20
21 \relative c'' {
22   \override Hairpin.stencil = #flared-hairpin
23   a4\< a a a\f
24   a4\p\< a a a\ff
25   a4\sfz\< a a a\!
26   \override Hairpin.stencil = #constante-hairpin
27   a4\< a a a\f
28   a4\p\< a a a\ff
29   a4\sfz\< a a a\!
30   \override Hairpin.stencil = #flared-hairpin
31   a4\> a a a\f
32   a4\p\> a a a\ff
33   a4\sfz\> a a a\!
34   \override Hairpin.stencil = #constante-hairpin
35   a4\> a a a\f
36   a4\p\> a a a\ff
37   a4\sfz\> a a a\!
38 }