]> git.donarmstrong.com Git - lilypond.git/blob - input/test/force-hshift.ly
release: 1.3.111
[lilypond.git] / input / test / force-hshift.ly
1 \version "1.3.110";
2 \score { 
3   \context Voice \notes\relative c {
4     
5         \context Staff <
6                 \context Voice = VA {
7                         \property Voice.NoteColumn \override #'forced-hshift = #0.1
8                         \stemUp
9                         \property Voice.NoteColumn \override #'horizontal-shift = #1
10                         <g' d'>
11                 }
12                 \context Voice = VB {
13                         \stemDown
14                         \property Voice.NoteColumn \override #'horizontal-shift = #1
15                         \property Voice.NoteColumn \override #'forced-hshift = #-0.1
16                         <bes f'>
17                 }
18         >
19   }
20   \paper {
21     linewidth=-1.0;
22   }  
23   \midi { }
24 }