]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/line-arrows.ly
Merge commit 'origin' into includes
[lilypond.git] / input / regression / line-arrows.ly
1 \header {
2   texidoc = "Arrows can be applied to text-spanners and line-spanners (such as the Glissando)"
3 }
4
5 \version "2.12.0"
6
7 \paper {
8   ragged-right = ##t
9 }
10
11 \relative c'' {
12   \override TextSpanner #'bound-padding = #1.0
13   \override TextSpanner #'style = #'line
14   \override TextSpanner #'(bound-details right arrow) = ##t
15   \override TextSpanner #'(bound-details left text) = #"fof"
16   \override TextSpanner #'(bound-details right text) = #"gag"
17   \override TextSpanner #'(bound-details right padding) = #0.6
18
19   \override TextSpanner #'(bound-details right stencil-align-dir-y) = #CENTER
20   \override TextSpanner #'(bound-details left stencil-align-dir-y) = #CENTER
21   
22   \override Glissando #'(bound-details right arrow) = ##t
23   \override Glissando #'arrow-length = #0.5
24   \override Glissando #'arrow-width = #0.25
25   
26   a8\startTextSpan gis8 a4 b4\glissando
27   b,4 | g' c\stopTextSpan c
28 }