]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/forcing-horizontal-shift-of-notes.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "simultaneous-notes, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c
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