]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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 %% Translation of GIT committish: c39256c433c9e0d80429fb768cde5834541524f8
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