]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-notes-with-floating-space.ly
51eda5a6668f024f84a19c6cc5e17dbadbd2a654
[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.2"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
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
46 rattachement@tie{}: LilyPond commence par espacer les notes normales,
47 puis les ornements 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
63 \relative c'' {
64   <<
65     \override Score.SpacingSpanner #'strict-grace-spacing = ##t
66     \new Staff \new Voice {
67       \afterGrace c4 { c16[ c8 c16] }
68       c8[ \grace { b16[ d] } c8]
69       c4 r
70     }
71     \new Staff {
72       c16 c c c c c c c c4 r
73     }
74   >>
75 }
76