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