]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / 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.13.1"
4
5 \header {
6   lsrtags = "simultaneous-notes, tweaks-and-overrides"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9
10  doctitlees = "Forzar el desplazamiento horizontal de las notas"
11  
12 texidoces = "
13  Cuando el motor de tipografiado no es capaz de todo, se puede usar la
14  sintaxis siguiente para sobreescribir las decisiones de tipografía.
15  Las unidades de medida que se usan aquí son espacios de pentagrama.
16
17 "
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20   texidocde = "
21 Wenn es zu Zusammenstößen kommt, kann mit folgender Lösung eine andere
22 Position manuell eingestellt werden.  Die Einheiten hier sind
23 Notenlinienzwischenräume.
24
25 "
26   doctitlede = "Horizontale Verschiebung von Noten erzwingen"
27
28   texidoc = "
29 When the typesetting engine cannot cope, the following syntax can be
30 used to override typesetting decisions. The units of measure used here
31 are staff spaces.
32
33 "
34   doctitle = "Forcing horizontal shift of notes"
35 } % begin verbatim
36
37 \relative c' <<
38   {
39     <d g>2 <d g>
40   }
41   \\
42   {
43     <b f'>2
44     \once \override NoteColumn #'force-hshift = #1.7
45     <b f'>2
46   }
47 >>
48