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