]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
4cfff48ada4befacc0ef9f08e4e3a71f37611925
[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.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Los reguladores pueden imprimirse en uno cualquiera de los estilos de
12 @code{line-interface}: discontinuo, punteado, línea, trino o zig-zag.
13
14 "
15   doctitlees = "Reguladores con distintos estilos de línea"
16
17
18
19   texidoc = "
20 Hairpins can take any style from @code{line-interface} - dashed-line,
21 dotted-line, line, trill or zigzag.
22
23 "
24   doctitle = "Hairpins with different line styles"
25 } % begin verbatim
26
27 \relative c' {
28   c2\< c\!
29   \override Hairpin #'style = #'dashed-line
30   c2\< c\!
31   \override Hairpin #'style = #'dotted-line
32   c2\< c\!
33   \override Hairpin #'style = #'line
34   c2\< c\!
35   \override Hairpin #'style = #'trill
36   c2\< c\!
37   \override Hairpin #'style = #'zigzag
38   c2\< c\!
39   \revert Hairpin #'style
40   c2\< c\!
41 }
42