]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/line-arrows.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "expressive-marks, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   texidoc = "
21 Arrows can be applied to text-spanners and line-spanners (such as the
22 Glissando).
23
24 "
25   doctitle = "Line arrows"
26 } % begin verbatim
27
28 \relative c'' {
29   \override TextSpanner #'bound-padding = #1.0
30   \override TextSpanner #'style = #'line
31   \override TextSpanner #'(bound-details right arrow) = ##t
32   \override TextSpanner #'(bound-details left text) = #"fof"
33   \override TextSpanner #'(bound-details right text) = #"gag"
34   \override TextSpanner #'(bound-details right padding) = #0.6
35
36   \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER
37   \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
38
39   \override Glissando #'(bound-details right arrow) = ##t
40   \override Glissando #'arrow-length = #0.5
41   \override Glissando #'arrow-width = #0.25
42
43   a8\startTextSpan gis a4 b\glissando b,
44   g'4 c\stopTextSpan c2
45 }