]> 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; 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 %% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
8   texidoces = "
9 Los reguladores pueden imprimirse en uno cualquiera de los estilos de
10 @code{line-interface}: discontinuo, punteado, línea, trino o zig-zag.
11
12 "
13   doctitlees = "Reguladores con distintos estilos de línea"
14
15
16
17   lsrtags = "expressive-marks, tweaks-and-overrides"
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