blob: 7c082bed1b5ec7dfbdbd4dbfae296e7b5fc28df5 (
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
59
60
61
|
% DO NOT EDIT this file manually; it is automatically
% generated from Documentation/snippets/new
% Make any changes in Documentation/snippets/new/
% and then run scripts/auxiliar/makelsr.py
%
% This file is in the public domain.
%% Note: this file works from version 2.17.7
\version "2.17.7"
\header {
= "contexts-and-engravers, editorial-annotations, repeats, staff-notation"
= "
This snippet demonstrates the use of the @code{Measure_counter_engraver} to
number groups of successive measures. Any stretch of measures may be numbered,
whether consisting of repetitions or not.
The engraver must be added to the appropriate context. Here, a @code{Staff}
context is used; another possibility is a @code{Dynamics} context.
The counter is begun with @code{\\startMeasureCount} and ended with
@code{\\stopMeasureCount}. Numbering will start by default with @code{1}, but
this behavior may be modified by overriding the @code{count-from} property.
When a measure extends across a line break, the number will appear twice, the
second time in parentheses.
"
= "Numbering groups of measures"
} % begin verbatim
\layout {
\context {
\Staff
\consists #Measure_counter_engraver
}
}
\new Staff {
\startMeasureCount
\repeat unfold 7 {
c'4 d' e' f'
}
\stopMeasureCount
\bar "||"
g'4 f' e' d'
\override Staff.MeasureCounter.count-from = #2
\startMeasureCount
\repeat unfold 5 {
g'4 f' e' d'
}
g'4 f'
\bar ""
\break
e'4 d'
\repeat unfold 7 {
g'4 f' e' d'
}
\stopMeasureCount
}
|