-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoice+instruments.ly
110 lines (92 loc) · 1.76 KB
/
voice+instruments.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
105
106
107
108
109
110
\version "2.18.2"
%#(ly:set-option 'point-and-click #f)
#(ly:set-option 'midi-extension "mid")
#(set-default-paper-size "a4")
%#(set-global-staff-size 18.5)
\header {
title = "title"
%composer = "Composer"
arranger = "arranger"
% Удалить строку версии LilyPond
tagline = ##f
}
global = {
\key f \major
\time 2/4
\numericTimeSignature
}
br = { \break }
%br = {}
scoreVoice = \relative c'' {
\global
\dynamicUp
\autoBeamOff
\override Score.BarNumber.break-visibility = #end-of-line-invisible
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 2)
}
scoreVoiceL = \lyricmode {
}
scoreVoiceLL = \lyricmode {
}
U = { \change Staff = right }
D = { \change Staff = left }
scoreInstrRight = \relative c''' {
\global
\dynamicNeutral
}
scoreInstrLeft = \relative c'' {
\global
\dynamicUp
}
scoreVoicePart = \new Staff \with {
% instrumentName = "Voice"
midiInstrument = "voice oohs"
\consists "Ambitus_engraver"
} { \scoreVoice }
\addlyrics { \scoreVoiceL }
\addlyrics { \scoreVoiceLL }
scoreInstrPart = \new PianoStaff \with {
instrumentName = "НАР"
} <<
\new Staff = "right" \with {
midiInstrument = "church organ"
} \scoreInstrRight
\new Staff = "left" \with {
midiInstrument = "church organ"
} \scoreInstrLeft
>>
\bookpart {
\header {
% piece = "Fis-dur"
}
\paper {
top-margin = 15
left-margin = 15
right-margin = 10
bottom-margin = 15
indent = 10
%ragged-bottom = ##t
ragged-last-bottom = ##f
}
\score {
% \transpose f fis
<<
\new ChoirStaff <<
\scoreVoicePart
>>
\scoreInstrPart
>>
\layout {
\context {
\Score
}
\context {
\Staff
}
%Metronome_mark_engraver
}
\midi {
\tempo 4=90
}
}
}