]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/balloon.ly
Doc-es: various updates.
[lilypond.git] / input / regression / balloon.ly
1
2 \header {
3   
4   texidoc = "With balloon texts, objects in the output can be marked,
5 with lines and explanatory text added."
6   
7 }
8 \version "2.17.6"
9
10 \layout{ ragged-right = ##t }
11
12 \score{
13   \new Voice \with {\consists "Balloon_engraver" }
14   {
15     \relative c'  {
16       \balloonGrobText #'Stem #'(3 . 4) \markup { "I'm a Stem" }
17       <c-\balloonText #'(-2 . -2) \markup { \simple #"hoi" }  >8
18       \balloonLengthOn
19       \balloonGrobText #'Rest #'(-1 . -2) \markup{ "Rest" }
20       r
21       \balloonLengthOff
22       \balloonGrobText #'Script #'(-1 . -1) \markup{ "Accent" }
23       c4->
24     }
25   }
26
27   \layout {
28     \context {
29       \Score
30       \override PaperColumn.keep-inside-line = ##f
31     }
32   }
33 }