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