]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/line-arrows.ly
Doc: run makelsr locally
[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 = "tweaks-and-overrides, expressive-marks"
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   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
29 \relative c'' {
30   \override TextSpanner #'bound-padding = #1.0
31   \override TextSpanner #'style = #'line
32   \override TextSpanner #'(bound-details right arrow) = ##t
33   \override TextSpanner #'(bound-details left text) = #"fof"
34   \override TextSpanner #'(bound-details right text) = #"gag"
35   \override TextSpanner #'(bound-details right padding) = #0.6
36
37   \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER
38   \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
39
40   \override Glissando #'(bound-details right arrow) = ##t
41   \override Glissando #'arrow-length = #0.5
42   \override Glissando #'arrow-width = #0.25
43
44   a8\startTextSpan gis a4 b\glissando b,
45   g'4 c\stopTextSpan c2
46 }