]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/forcing-horizontal-shift-of-notes.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[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.64"
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
25 \relative c' <<
26   {
27     <d g>2 <d g>
28   }
29   \\
30   {
31     <b f'>2
32     \once \override NoteColumn #'force-hshift = #1.7
33     <b f'>2
34   }
35 >>