]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/moving-dotted-notes-in-polyphony.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / moving-dotted-notes-in-polyphony.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, rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Cuando se puede una nota en la voz superior para evitar la colisión
15 con una nota de otra voz, el comportamiento predeterminado es
16 desplazar la nota superior a la derecha.  Se puede cambiar usando la
17 propiedad @code{prefer-dotted-right} de @code{NoteCollision}.
18
19 "
20   doctitlees = "Desplazar las notas con puntillo en polifonía"
21
22
23
24   texidoc = "
25 When a dotted note in the upper voice is moved to avoid a collision
26 with a note in another voice, the default is to move the upper note to
27 the right.  This behaviour can be over-ridden by using the
28 @code{prefer-dotted-right} property of @code{NoteCollision}.
29
30 "
31   doctitle = "Moving dotted notes in polyphony"
32 } % begin verbatim
33
34
35 \new Staff \relative c' <<
36   { f2. f4
37     \override Staff.NoteCollision #'prefer-dotted-right = ##f
38     f2. f4
39     \override Staff.NoteCollision #'prefer-dotted-right = ##t
40     f2. f4
41   }
42   \\
43   { e4 e e e e e e e e e e e}
44 >>
45