-
Notifications
You must be signed in to change notification settings - Fork 0
/
modelo.ly
104 lines (81 loc) · 1.76 KB
/
modelo.ly
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
\version "2.18.2"
%{
BAHPM
Bateria de Avaliação da Habilidade de Percepção Musical
Item:
Igual ou diferente:
%}
%%% INFORMACOES PRE-MUSICA %%%
%%%%%%%%%%%%%
% SUBITEM A %
%%%%%%%%%%%%%
% Inserir nome do instrumento, andamento, compasso, clave
instrumentoNomeItemA = \set Staff.instrumentName = ""
andamentoItemA = \tempo
compassoItemA = \time
clefItemA = \clef
keyItemA = \key
%%%%%%%%%%%%%
% SUBITEM B %
%%%%%%%%%%%%%
instrumentoNomeItemB = \instrumentoNomeItemA
andamentoItemB = \andamentoItemA
compassoItemB = \compassoItemA
clefItemB = \clefItemA
keyItemB = \keyItemA
%%%%%%%%%%
% LAYOUT %
%%%%%%%%%%
\include "lilypond-book-preamble.ly"
\layout {
\context {
\Score
% \override TimeSignature #'stencil = ##f % Sem fórmla de compasso
% \accidentalStyle Score.neo-modern % Acidente apenas para as notas
% \override StaffSymbol.line-count = #1 % Número de linhas na pauta
% \override Staff.StaffSymbol.line-positions = #'(-1 0 1)
% \override SpacingSpanner.uniform-stretching = ##t % Notação proporcional
% \override SpacingSpanner.strict-note-spacing = ##t
% proportionalNotationDuration = #(ly:make-moment 1/20)
}
}
\paper {
% ragged-right = ##f
% line-width = 110\mm
}
%%%%%%%%%%
% MUSICA %
%%%%%%%%%%
musica = \relative c' {
\tag #'itemA { }
\tag #'itemB { }
\bar "|."
}
%%% CONTEXTOS PARA CADA SUBITEM %%%
itemA = \score {
\new Staff <<
\instrumentoNomeItemA
\andamentoItemA
\compassoItemA
\clefItemA
\keyItemA
\new Voice {
\keepWithTag #'itemA \musica
}
>>
}
itemB = \score {
\new Staff <<
\instrumentoNomeItemB
\andamentoItemB
\compassoItemB
\clefItemB
\keyItemB
\new Voice {
\keepWithTag #'itemB \musica
}
>>
}
\itemA
% Desmarcar para incluir o subitem B
% \itemB