]> git.donarmstrong.com Git - lilypond.git/blob - input/test/move-notehead.ly
(read_pipe): only store and display error log
[lilypond.git] / input / test / move-notehead.ly
1
2 \version "1.9.1"
3 \header { texidoc = "@cindex Scheme Move Notehead
4
5 You can move objects around with the property extra-offset.  This
6 example shows how to move noteheads around.  It uses the
7 @code{\outputproperty} command.
8
9 " }
10
11 fragment = \notes {
12     \outputproperty #(make-type-checker 'note-head-interface)
13       #'extra-offset = #'(2 . 3)
14     c''2 c
15 }
16
17 \paper { raggedright = ##t} 
18
19 \score {
20   \notes\relative c \fragment
21   \paper { }  
22 }
23