]> 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
[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: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
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
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22   texidocde = "
23 Wenn es zu Zusammenstößen kommt, kann mit folgender Lösung eine andere
24 Position manuell eingestellt werden.  Die Einheiten hier sind
25 Notenlinienzwischenräume.
26
27 "
28   doctitlede = "Horizontale Verschiebung von Noten erzwingen"
29
30 %% Translation of GIT committish: c39256c433c9e0d80429fb768cde5834541524f8
31   texidocfr = "
32 Quand LilyPond est dépassé, la propriété @code{force-hshift} de l'objet
33 @code{NoteColumn}, et des silences à hauteur déterminée, peuvent
34 s'avérer utiles pour dicter au programme les choix de placement.  On
35 travaille ici en espace de portée.
36
37 "
38   doctitlefr = "Décalage horizontal forcé"
39
40
41   texidoc = "
42 When the typesetting engine cannot cope, the following syntax can be
43 used to override typesetting decisions. The units of measure used here
44 are staff spaces.
45
46 "
47   doctitle = "Forcing horizontal shift of notes"
48 } % begin verbatim
49
50 \relative c' <<
51   {
52     <d g>2 <d g>
53   }
54   \\
55   {
56     <b f'>2
57     \once \override NoteColumn #'force-hshift = #1.7
58     <b f'>2
59   }
60 >>
61