]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/line-arrows.ly
4b8de796b65300521bd92865ca1f62c0258527f7
[lilypond.git] / Documentation / snippets / line-arrows.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 Se pueden aplicar puntas de flecha a los elementos de extensión de
15 texto y de línea (como el Glissando).
16
17 "
18   doctitlees = "Puntas de flecha para las líneas"
19
20 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
21   texidocfr = "
22 Les extensions de texte, tout comme les indications sous forme de ligne
23 tel un glissando, peuvent se voir pourvues d'une extrémité en flèche.
24
25 "
26   doctitlefr = "Terminaison de ligne en flèche"
27
28   texidoc = "
29 Arrows can be applied to text-spanners and line-spanners (such as the
30 Glissando).
31
32 "
33   doctitle = "Line arrows"
34 } % begin verbatim
35
36
37 \relative c'' {
38   \override TextSpanner #'bound-padding = #1.0
39   \override TextSpanner #'style = #'line
40   \override TextSpanner #'(bound-details right arrow) = ##t
41   \override TextSpanner #'(bound-details left text) = #"fof"
42   \override TextSpanner #'(bound-details right text) = #"gag"
43   \override TextSpanner #'(bound-details right padding) = #0.6
44
45   \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER
46   \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
47
48   \override Glissando #'(bound-details right arrow) = ##t
49   \override Glissando #'arrow-length = #0.5
50   \override Glissando #'arrow-width = #0.25
51
52   a8\startTextSpan gis a4 b\glissando b,
53   g'4 c\stopTextSpan c2
54 }