]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-notes-with-floating-space.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / positioning-grace-notes-with-floating-space.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6 %% Translation of GIT committish: 21c8461ea87cd670a35a40b91d3ef20de03a0409
7   texidocfr = "
8 Lorsque vous activez la propriété @code{'strict-grace-spacing},
9 l'espacement des notes d'ornement se fera de manière @qq{élastique}.
10 Autrement dit, elles seront décollées de leur note de rattachement :
11 LilyPond commence par espacer les notes normales, puis les ornements
12 sont placés à la gauche de leur note de rattachement.
13
14 "
15   doctitlefr = "Positionnement des notes d'ornement avec espace flottant"
16
17   lsrtags = "rhythms"
18
19 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
20   texidoces = "
21
22 Al establecer la propiedad @code{'strict-grace-spacing} hacemos
23 que las columnas musicales para las notas de adorno sean
24 'flotantes', es decir, desacopladas de las notas que no son de
25 adorno: primero se aplica el espaciado de las notas normales, y
26 luego se ponen las columnas musicales de las notas de adorno a la
27 izquierda de las columnas musicales de las notas principales.
28
29 "
30
31   doctitlees = "Posicionamiento de las notas de adorno con espacio flotante"
32
33
34 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
35   texidocde = "
36 Wenn man die Eigenschaft @code{'strict-grace-spacing} aktiviert,
37 werden die Verzierungsnoten \"fließend\" gemacht, d.h. sie sind
38 von den normalen Noten los gekoppelt: Zuerst werden die normalen
39 Noten platziert, dann erst die Verzierungen links von der
40 Hauptnote gesetzt.
41
42 "
43   doctitlede = "Positionierung von Verzierungen mit verschiebbarem Platz"
44
45
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