]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/balloon.ly
* input/regression/balloon.ly: new file.
[lilypond.git] / input / regression / balloon.ly
1
2 \header {
3     texidoc = "With balloon texts, objects in the output can be marked,
4 with lines and explanatory text added."
5     }
6 \version "2.1.11"
7
8 \score  {
9  \notes {
10      
11    \relative c'  {
12
13        \once\property Voice.Stem \set #'molecule-callback = #Balloon_interface::brew_molecule
14        \once\property Voice.Stem \set #'original-callback = #Stem::brew_molecule
15        \once\property Voice.Stem \set #'balloon-text = #"I'm a stem"
16        \once\property Voice.Stem \set #'balloon-text-offset = #'(3 . 4)
17        \once\property Voice.Stem \set #'balloon-text-props
18          = #'((font-family .  roman))
19
20        
21        c8
22        }
23   }
24  \paper{ raggedright = ##t }
25 }