]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-notes-with-floating-space.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / Documentation / snippets / positioning-grace-notes-with-floating-space.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.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14
15 Al establecer la propiedad @code{'strict-grace-spacing} hacemos que
16 las columnas musicales para las notas de adorno sean @q{flotantes}, es
17 decir, desacopladas de las notas que no son de adorno: primero se
18 aplica el espaciado de las notas normales, y luego se ponen las
19 columnas musicales de las notas de adorno a la izquierda de las
20 columnas musicales de las notas principales.
21
22 "
23
24   doctitlees = "Posicionamiento de las notas de adorno con espacio flotante"
25
26
27
28 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
29   texidocde = "
30 Wenn man die Eigenschaft @code{'strict-grace-spacing} aktiviert,
31 werden die Verzierungsnoten \"fließend\" gemacht, d.h. sie sind
32 von den normalen Noten los gekoppelt: Zuerst werden die normalen
33 Noten platziert, dann erst die Verzierungen links von der
34 Hauptnote gesetzt.
35
36 "
37   doctitlede = "Positionierung von Verzierungen mit verschiebbarem Platz"
38
39
40
41 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
42   texidocfr = "
43 Lorsque vous activez la propriété @code{'strict-grace-spacing},
44 l'espacement des notes d'ornement se fera de manière @qq{élastique}.
45 Autrement dit, elles seront décollées de leur note de rattachement :
46 LilyPond commence par espacer les notes normales, puis les ornements
47 sont placés à la gauche de leur note de rattachement.
48
49 "
50   doctitlefr = "Positionnement des notes d'ornement avec espace flottant"
51
52   texidoc = "
53 Setting the property @code{'strict-grace-spacing} makes the musical
54 columns for grace notes 'floating', i.e., decoupled from the non-grace
55 notes: first the normal notes are spaced, then the (musical columns of
56 the) graces are put left of the musical columns for the main notes.
57
58 "
59   doctitle = "Positioning grace notes with floating space"
60 } % begin verbatim
61
62 \relative c'' {
63   <<
64     \override Score.SpacingSpanner #'strict-grace-spacing = ##t
65     \new Staff \new Voice {
66       \afterGrace c4 { c16[ c8 c16] }
67       c8[ \grace { b16[ d] } c8]
68       c4 r
69     }
70     \new Staff {
71       c16 c c c c c c c c4 r
72     }
73   >>
74 }
75