]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "simultaneous-notes, tweaks-and-overrides"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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 %% Translation of GIT committish: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
29   texidocfr = "
30 Quand LilyPond est dépassé, la propriété @code{force-hshift} de l'objet
31 @code{NoteColumn}, et des silences à hauteur déterminée, peuvent
32 s'avérer utiles pour dicter au programme les choix de placement.  On
33 travaille ici en espace de portée.
34
35 "
36   doctitlefr = "Décalage horizontal forcé"
37
38
39   texidoc = "
40 When the typesetting engine cannot cope, the following syntax can be
41 used to override typesetting decisions. The units of measure used here
42 are staff spaces.
43
44 "
45   doctitle = "Forcing horizontal shift of notes"
46 } % begin verbatim
47
48 \relative c' <<
49   {
50     <d g>2 <d g>
51   }
52   \\
53   {
54     <b f'>2
55     \once \override NoteColumn #'force-hshift = #1.7
56     <b f'>2
57   }
58 >>
59