]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/moving-dotted-notes-in-polyphony.ly
Merge branch 'master' into lilypond/translation
[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.16"
5
6 \header {
7 %% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
8   texidoces = "
9 Cuando se puede una nota en la voz superior para evitar la colisión
10 con una nota de otra voz, el comportamiento predeterminado es
11 desplazar la nota superior a la derecha.  Se puede cambiar usando la
12 propiedad @code{prefer-dotted-right} de @code{NoteCollision}.
13
14 "
15   doctitlees = "Desplazar las notas con puntillo en polifonía"
16
17
18
19   lsrtags = "rhythms, simultaneous-notes, tweaks-and-overrides"
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