]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c' {
31   c2\< c\!
32   \override Hairpin #'style = #'dashed-line
33   c2\< c\!
34   \override Hairpin #'style = #'dotted-line
35   c2\< c\!
36   \override Hairpin #'style = #'line
37   c2\< c\!
38   \override Hairpin #'style = #'trill
39   c2\< c\!
40   \override Hairpin #'style = #'zigzag
41   c2\< c\!
42   \revert Hairpin #'style
43   c2\< c\!
44 }
45