]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/balloon.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
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     }
19   }
20
21   \layout {
22     \context {
23       \Score
24       \override PaperColumn #'keep-inside-line = ##f
25     }
26   }
27 }