]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/manually-controlling-beam-positions.ly
LSR updates from tarball
[lilypond.git] / Documentation / snippets / manually-controlling-beam-positions.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 = "tweaks-and-overrides, rhythms, connecting-notes"
11
12 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
13   texidocfr = "
14 Le positionnement et la pente des ligatures peuvent être contrôlés
15 manuellement à l'aide d'une adaptation de la propriété
16 @code{positions} de l'objet @code{Beam}.
17
18 "
19   doctitlefr = "Contrôle manuel du positionnement des ligatures"
20
21   texidoc = "
22 Beam positions may be controlled manually, by overriding the
23 @code{positions} setting of the @code{Beam} grob.
24
25
26
27
28 "
29   doctitle = "Manually controlling beam positions"
30 } % begin verbatim
31
32
33 \relative c' {
34   \time 2/4
35   % from upper staff-line (position 2) to center (position 0)
36   \override Beam #'positions = #'(2 . 0)
37   c8 c
38   % from center to one above center (position 1)
39   \override Beam #'positions = #'(0 . 1)
40   c8 c
41 }
42
43