]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/line-arrows.ly
b5149c0f5d26ac212a9da618c1dcb252b4e5e9ec
[lilypond.git] / Documentation / snippets / line-arrows.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.39"
5
6 \header {
7   lsrtags = "expressive-marks, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Se pueden aplicar puntas de flecha a los elementos de extensión de
12 texto y de línea (como el Glissando).
13
14 "
15   doctitlees = "Puntas de flecha para las líneas"
16
17   texidoc = "
18 Arrows can be applied to text-spanners and line-spanners (such as the
19 Glissando).
20
21 "
22   doctitle = "Line arrows"
23 } % begin verbatim
24
25 \relative c'' {
26   \override TextSpanner #'bound-padding = #1.0
27   \override TextSpanner #'style = #'line
28   \override TextSpanner #'(bound-details right arrow) = ##t
29   \override TextSpanner #'(bound-details left text) = #"fof"
30   \override TextSpanner #'(bound-details right text) = #"gag"
31   \override TextSpanner #'(bound-details right padding) = #0.6
32
33   \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER
34   \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
35
36   \override Glissando #'(bound-details right arrow) = ##t
37   \override Glissando #'arrow-length = #0.5
38   \override Glissando #'arrow-width = #0.25
39
40   a8\startTextSpan gis a4 b\glissando b,
41   g'4 c\stopTextSpan c2
42 }