]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/forcing-horizontal-shift-of-notes.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "simultaneous-notes, tweaks-and-overrides"
7
8  doctitlees = "Forzar el desplazamiento horizontal de las notas"
9  texidoces = "
10 Cuando el motor de tipografiado no es capaz de todo, se puede usar la
11 propiedad force-hshift del objeto NoteColumn para sobreescribir
12 decisiones de tipografiado.  Las unidades de medida que se usan aquĆ­
13 son espacios de pentagrama.
14
15 "
16   texidoc = "
17 When the typesetting engine cannot cope, the following syntax can be
18 used to override typesetting decisions. The units of measure used here
19 are staff spaces.
20
21 "
22   doctitle = "Forcing horizontal shift of notes"
23 } % begin verbatim
24 \relative c' <<
25   {
26     <d g>2 <d g>
27   }
28   \\
29   {
30     <b f'>2
31     \once \override NoteColumn #'force-hshift = #1.7
32     <b f'>2
33   }
34 >>