]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[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.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 = "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 \relative c' {
21   c2\< c\!
22   \override Hairpin.style = #'dashed-line
23   c2\< c\!
24   \override Hairpin.style = #'dotted-line
25   c2\< c\!
26   \override Hairpin.style = #'line
27   c2\< c\!
28   \override Hairpin.style = #'trill
29   c2\< c\!
30   \override Hairpin.style = #'zigzag
31   c2\< c\!
32   \revert Hairpin.style
33   c2\< c\!
34 }