]> git.donarmstrong.com Git - lilypond.git/blob - input/test/move-notehead.ly
Added texinfo index.
[lilypond.git] / input / test / move-notehead.ly
1 \version "1.7.18"
2 % possible rename to scheme- or something like that.  -gp
3 \header { texidoc = "@cindex Scheme Move Notehead
4 You can move objects around with scheme.  This example shows how to
5 move noteheads around. " }
6
7 fragment = \notes {
8     \outputproperty #(make-type-checker 'note-head-interface)
9       #'extra-offset = #'(2 . 3)
10     c''2 c
11 }
12
13 \paper { raggedright = ##t} 
14
15 \score {
16   \notes\relative c \fragment
17   \paper { }  
18 }
19 %% new-chords-done %%