]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / forcing-horizontal-shift-of-notes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "simultaneous-notes, tweaks-and-overrides"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13
14  doctitlees = "Forzar el desplazamiento horizontal de las notas"
15
16 texidoces = "
17  Cuando el motor de tipografiado no es capaz de todo, se puede usar la
18  sintaxis siguiente para sobreescribir las decisiones de tipografía.
19  Las unidades de medida que se usan aquí son espacios de pentagrama.
20
21 "
22
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25   texidocde = "
26 Wenn es zu Zusammenstößen kommt, kann mit folgender Lösung eine andere
27 Position manuell eingestellt werden.  Die Einheiten hier sind
28 Notenlinienzwischenräume.
29
30 "
31   doctitlede = "Horizontale Verschiebung von Noten erzwingen"
32
33 %% Translation of GIT committish: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
34   texidocfr = "
35 Quand LilyPond est dépassé, la propriété @code{force-hshift} de l'objet
36 @code{NoteColumn}, et des silences à hauteur déterminée, peuvent
37 s'avérer utiles pour dicter au programme les choix de placement.  On
38 travaille ici en espace de portée.
39
40 "
41   doctitlefr = "Décalage horizontal forcé"
42
43
44   texidoc = "
45 When the typesetting engine cannot cope, the following syntax can be
46 used to override typesetting decisions. The units of measure used here
47 are staff spaces.
48
49 "
50   doctitle = "Forcing horizontal shift of notes"
51 } % begin verbatim
52
53
54 \relative c' <<
55   {
56     <d g>2 <d g>
57   }
58   \\
59   {
60     <b f'>2
61     \once \override NoteColumn #'force-hshift = #1.7
62     <b f'>2
63   }
64 >>
65