]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / hairpins-with-different-line-styles.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, tweaks-and-overrides"
11
12   texidoc = "
13 Hairpins can take any style from @code{line-interface} - dashed-line,
14 dotted-line, line, trill or zigzag.
15
16 "
17   doctitle = "Hairpins with different line styles"
18 } % begin verbatim
19
20
21 \relative c' {
22   c2\< c\!
23   \override Hairpin #'style = #'dashed-line
24   c2\< c\!
25   \override Hairpin #'style = #'dotted-line
26   c2\< c\!
27   \override Hairpin #'style = #'line
28   c2\< c\!
29   \override Hairpin #'style = #'trill
30   c2\< c\!
31   \override Hairpin #'style = #'zigzag
32   c2\< c\!
33   \revert Hairpin #'style
34   c2\< c\!
35 }