blob: 5e4ace4ea0350edf063b1e6db66ccb335b6e3c23 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
%% 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 {
= "expressive-marks, tweaks-and-overrides, staff-notation, scheme-language, editorial-annotations"
%% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
texidocfr = "
Il est impossible, par défaut, de noter un doigté sur deux caractères --
autrement dit supérieur à 9. C'est gravé dans le marbre.
Voici cependant deux méthodes pour créer des doigtés plus grands que 9.
"
doctitlefr = "Création de doigtés sur deux caractères"
= "
By default you cannot make double-digit fingering notation (i.e.
numbers larger than 9). This is a hard coded limitation.
This snippet shows two methods of creating fingerings larger than 9.
"
= "Creating double-digit fingerings"
} % begin verbatim
ten =
#(make-music 'FingeringEvent
'digit 10)
fifty =
#(make-music 'FingeringEvent
'digit 50)
finger =
#(define-music-function (parser location digit) (integer?)
(make-music 'FingeringEvent
'digit digit))
#(define (calc-finger-without-warning grob)
(let* ((event (event-cause grob))
(digit (ly:event-property event 'digit)))
(number->string digit 10)))
\relative c' {
% optional override to remove warnings for fingerings larger than 5
\override Fingering #'text = #calc-finger-without-warning
c1\ten
c1\fifty
c1-\finger #36
c1-\finger #29
}
|