]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
LSR: update.
[lilypond.git] / Documentation / snippets / hairpins-with-different-line-styles.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9   texidoc = "
10 Hairpins can take any style from @code{line-interface} - dashed-line,
11 dotted-line, line, trill or zigzag.
12
13 "
14   doctitle = "Hairpins with different line styles"
15 } % begin verbatim
16
17 \relative c' {
18   c2\< c\!
19   \override Hairpin #'style = #'dashed-line
20   c2\< c\!
21   \override Hairpin #'style = #'dotted-line
22   c2\< c\!
23   \override Hairpin #'style = #'line
24   c2\< c\!
25   \override Hairpin #'style = #'trill
26   c2\< c\!
27   \override Hairpin #'style = #'zigzag
28   c2\< c\!
29   \revert Hairpin #'style
30   c2\< c\!
31 }
32