]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-hairpins-using-al-niente-notation.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / printing-hairpins-using-al-niente-notation.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.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.16.0"
8
9 \header {
10   lsrtags = "expressive-marks"
11
12   texidoc = "
13 Hairpin dynamics may be printed with a circled tip (@qq{al niente}
14 notation) by setting the @code{circled-tip} property of the
15 @code{Hairpin} object to @code{#t}.
16
17 "
18   doctitle = "Printing hairpins using al niente notation"
19 } % begin verbatim
20
21
22 \relative c'' {
23   \override Hairpin #'circled-tip = ##t
24   c2\< c\!
25   c4\> c\< c2\!
26 }