]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/text-spanner-attachment-alignment.ly
Add support for max-systems-per-page.
[lilypond.git] / input / regression / text-spanner-attachment-alignment.ly
1 \header {
2
3   texidoc = "Text and trill spanners are attached to note columns, so
4   attachments in other staves have no effect on them."
5   
6   }
7
8 \layout {
9   ragged-right = ##t
10   }
11
12 \version "2.11.51"
13 <<
14    \new Staff {
15     \override TextSpanner #'bound-details #'left #'text = "*"
16       c'16 \startTrillSpan c' c' c' \stopTrillSpan 
17       c'16 \startTextSpan c' c' c' \stopTextSpan 
18    }
19    \new Staff {
20      \override TextScript #'self-alignment-X = #RIGHT 
21      \repeat unfold 2 {c'4 _ \markup { "FAT" } } 
22    }
23 >>