blob: 48c8e626dc8b37db8c49b473d03cdbc4daf21e4f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.14.2"
\header {
= "tweaks-and-overrides, rhythms, connecting-notes"
%% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
texidocfr = "
Le positionnement et la pente des ligatures peuvent être contrôlés
manuellement à l'aide d'une adaptation de la propriété
@code{positions} de l'objet @code{Beam}.
"
doctitlefr = "Contrôle manuel du positionnement des ligatures"
= "
Beam positions may be controlled manually, by overriding the
@code{positions} setting of the @code{Beam} grob.
"
= "Manually controlling beam positions"
} % begin verbatim
\relative c' {
\time 2/4
% from upper staff-line (position 2) to center (position 0)
\override Beam #'positions = #'(2 . 0)
c8 c
% from center to one above center (position 1)
\override Beam #'positions = #'(0 . 1)
c8 c
}
|