]> git.donarmstrong.com Git - lilypond.git/blob - input/test/script-priority.ly
(topdocs-web): New target.
[lilypond.git] / input / test / script-priority.ly
1 \version "1.7.18"
2
3 \header { texidoc = "@cindex Script Priority
4 Relative placements of different script types can be controlled
5 by overriding script-priority. "
6 }
7
8
9 \score{
10     \context Staff \notes \relative g''{
11         
12         \property Score.TextScript \override #'script-priority = #-100
13         a4^\prall^\markup \fontsize #-2 \musicglyph #"accidentals-1"
14
15         
16         \property Score.Script \override #'script-priority = #-100
17         \property Score.TextScript \revert #'script-priority
18         
19         a4^\prall^\markup \fontsize  #-2 \musicglyph #"accidentals-1"
20     }
21         \paper { raggedright = ##t} 
22 }
23