]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Doc-it: chapter 1 completed
[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.dsi.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.17.25"
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
22 \relative c' <<
23   {
24     <d g>2 <d g>
25   }
26   \\
27   {
28     <b f'>2
29     \once \override NoteColumn.force-hshift = #1.7
30     <b f'>2
31   }
32 >>