]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/forcing-horizontal-shift-of-notes.ly
LSR: Update.
[lilypond.git] / input / lsr / forcing-horizontal-shift-of-notes.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.48"
4
5 \header {
6   lsrtags = "simultaneous-notes, tweaks-and-overrides"
7
8   texidoc = "
9 When the typesetting engine cannot cope, the @code{force-hshift}
10 property of the @code{NoteColumn} object can be used to override
11 typesetting decisions. The measure units used here are staff spaces.
12
13 "
14   doctitle = "Forcing horizontal shift of notes"
15 } % begin verbatim
16 \relative c' <<
17   {
18     <d g>2 <d g>
19   }
20   \\
21   { <b f'>2
22     \once \override NoteColumn #'force-hshift = #1.7
23     <b f'>2
24   }
25 >>