]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/proportional-strict-notespacing.ly
8d42e045c8329dcf7395721bdcd39996a869b715
[lilypond.git] / Documentation / snippets / proportional-strict-notespacing.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 = "spacing, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
13   texidocfr = "
14 Lorsque la propriété @code{strict-note-spacing} est activée,
15 l'espacement des notes dans un système ne tient compte ni des barres de
16 mesure ni des clefs, qui se retrouvent placées juste avant la note qui
17 tombe au même moment.  Ceci peut entraîner certaines collisions.
18
19 "
20   doctitlefr = "Espacement strictement proportionnel des notes"
21
22   texidoc = "
23 If @code{strict-note-spacing} is set spacing of notes is not influenced
24 by bars or clefs within a system. Rather, they are placed just before
25 the note that occurs at the same time. This may cause collisions.
26
27 "
28   doctitle = "Proportional strict notespacing"
29 } % begin verbatim
30
31
32 \relative c'' <<
33   \override Score.SpacingSpanner #'strict-note-spacing = ##t
34   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
35   \new Staff {
36     c8[ c \clef alto c c \grace { d16 } c8 c] c4
37     c2 \grace { c16[ c16] } c2
38   }
39   \new Staff {
40     c2 \times 2/3 { c8 \clef bass cis,, c } c4
41     c1
42   }
43 >>
44