]> git.donarmstrong.com Git - lilypond.git/blob - input/test/force-hshift.ly
b6f97fd182a783f7858b2a87e2bc5d5111ef7ff5
[lilypond.git] / input / test / force-hshift.ly
1 \version "1.3.117";
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 }