]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/hairpins-with-different-line-styles.ly
24ddb9c5957cfe7b14dbbd96e307a651fa2b93d3
[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 = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
23   texidocfr = "
24 Les lignes d'un soufflet peuvent adopter tous les styles permis par la
25 @code{line-interface} : discontinu, pointillé, continu, ondulé ou en
26 zigzag.
27
28 "
29   doctitlefr = "Stylisation des lignes de soufflet"
30
31   texidoc = "
32 Hairpins can take any style from @code{line-interface} - dashed-line,
33 dotted-line, line, trill or zigzag.
34
35 "
36   doctitle = "Hairpins with different line styles"
37 } % begin verbatim
38
39
40 \relative c' {
41   c2\< c\!
42   \override Hairpin #'style = #'dashed-line
43   c2\< c\!
44   \override Hairpin #'style = #'dotted-line
45   c2\< c\!
46   \override Hairpin #'style = #'line
47   c2\< c\!
48   \override Hairpin #'style = #'trill
49   c2\< c\!
50   \override Hairpin #'style = #'zigzag
51   c2\< c\!
52   \revert Hairpin #'style
53   c2\< c\!
54 }
55