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