]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / forcing-horizontal-shift-of-notes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "simultaneous-notes, tweaks-and-overrides"
11
12   texidoc = "
13 When the typesetting engine cannot cope, the following syntax can be
14 used to override typesetting decisions. The units of measure used here
15 are staff spaces.
16
17 "
18   doctitle = "Forcing horizontal shift of notes"
19 } % begin verbatim
20
21 \relative c' <<
22   {
23     <d g>2 <d g>
24   }
25   \\
26   {
27     <b f'>2
28     \once \override NoteColumn.force-hshift = #1.7
29     <b f'>2
30   }
31 >>