]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-grace-notes-with-floating-space.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
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
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26   texidocde = "
27 Wenn man die Eigenschaft @code{'strict-grace-spacing} aktiviert,
28 werden die Verzierungsnoten \"fließend\" gemacht, d.h. sie sind
29 von den normalen Noten los gekoppelt: Zuerst werden die normalen
30 Noten platziert, dann erst die Verzierungen links von der
31 Hauptnote gesetzt.
32
33 "
34   doctitlede = "Positionierung von Verzierungen mit verschiebbarem Platz"
35
36
37
38 %% Translation of GIT committish: 374d57cf9b68ddf32a95409ce08ba75816900f6b
39   texidocfr = "
40 Lorsque vous activez la propriété @code{'strict-grace-spacing},
41 l'espacement des notes d'ornement se fera de manière @qq{élastique}.
42 Autrement dit, elles seront décollées de leur note de rattachement :
43 LilyPond commence par espacer les notes normales, puis les ornements
44 sont placés à la gauche de leur note de rattachement.
45
46 "
47   doctitlefr = "Positionnement des notes d'ornement avec espace flottant"
48
49   texidoc = "
50 Setting the property @code{'strict-grace-spacing} makes the musical
51 columns for grace notes 'floating', i.e., decoupled from the non-grace
52 notes: first the normal notes are spaced, then the (musical columns of
53 the) graces are put left of the musical columns for the main notes.
54
55 "
56   doctitle = "Positioning grace notes with floating space"
57 } % begin verbatim
58
59 \relative c'' {
60   <<
61     \override Score.SpacingSpanner #'strict-grace-spacing = ##t
62     \new Staff \new Voice {
63       \afterGrace c4 { c16[ c8 c16] }
64       c8[ \grace { b16[ d] } c8]
65       c4 r
66     }
67     \new Staff {
68       c16 c c c c c c c c4 r
69     }
70   >>
71 }
72