-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3voices_vocal.ly
158 lines (128 loc) · 3.36 KB
/
3voices_vocal.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
\version "2.18.2"
% закомментируйте строку ниже, чтобы получался pdf с навигацией
%#(ly:set-option 'point-and-click #f)
#(ly:set-option 'midi-extension "mid")
#(set-default-paper-size "a4")
%#(set-global-staff-size 18)
\header {
title = ""
%composer = "Composer"
% Удалить строку версии LilyPond
tagline = ##f
}
abr = { \break }
abr = {}
pbr = { \pageBreak }
%pbr = {}
breathes = { \once \override BreathingSign.text = \markup { \musicglyph #"scripts.tickmark" } \breathe }
bort = { % Динамика: вместо f, p пишем по-русски гр., т. и т.д.
\override DynamicText.stencil = #(lambda (grob)(
grob-interpret-markup grob (
let (( dyntxt (ly:grob-property grob 'text ) ) )
( set! dyntxt (cond
(( equal? dyntxt "f" ) "гр." )
(( equal? dyntxt "p" ) "т." )
)) #{ \markup \normal-text \italic $dyntxt #} )
)) }
melon = { \set melismaBusyProperties = #'() }
meloff = { \unset melismaBusyProperties }
solo = ^\markup\italic"Соло"
tutti = ^\markup\italic"Все"
co = \cadenzaOn
cof = \cadenzaOff
cb = { \cadenzaOff \bar "||" }
cbr = { \bar "" }
cbar = { \cadenzaOff \bar "|" \cadenzaOn }
stemOff = { \hide Staff.Stem }
nat = { \once \hide Accidental }
%stemOn = { \unHideNotes Staff.Stem }
partiall = { \set Timing.measurePosition = #(ly:make-moment -1/4) }
global = {
\key f \major
\time 3/4
\numericTimeSignature
\override Score.BarNumber.break-visibility = #end-of-line-invisible
\override Score.BarNumber.X-offset = #1
\override Score.BarNumber.self-alignment-X = #LEFT
\set Score.barNumberVisibility = #(every-nth-bar-number-visible 2)
\set Score.skipBars = ##t
\override MultiMeasureRest.expand-limit = #1
\autoBeamOff
\dynamicNeutral
}
voiceone = \relative c'' {
\global
c c c
}
voicetwo = \relative c'' {
\global
c c c
}
voicethree = \relative c'' {
\global
c c c
}
lyricone = \lyricmode {
one
}
lyrictwo = \lyricmode {
two
}
lyricthree = \lyricmode {
three
}
\bookpart {
\paper {
top-margin = 15
left-margin = 15
right-margin = 10
bottom-margin = 15
indent = 15
ragged-bottom = ##f
ragged-last-bottom = ##f
}
\score {
% \transpose c bes {
\new ChoirStaff <<
\new Staff = "staffone" \with {
instrumentName = ""
shortInstrumentName = ""
midiInstrument = "voice oohs"
} <<
\new Voice = "voiceone" { \oneVoice \voiceone }
>>
\new Lyrics \lyricsto "voiceone" { \lyricone }
\new Staff = "stafftwo" \with {
instrumentName = ""
shortInstrumentName = ""
midiInstrument = "voice oohs"
} <<
\new Voice = "voicetwo" { \oneVoice \voicetwo }
>>
\new Lyrics \lyricsto "voicetwo" { \lyrictwo }
\new Staff = "staffthree" \with {
instrumentName = ""
shortInstrumentName = ""
midiInstrument = "voice oohs"
} <<
\new Voice = "voicethree" { \oneVoice \voicethree }
>>
\new Lyrics \lyricsto "voicethree" { \lyricthree }
>>
% } % transposeµ
\layout {
\context {
\Score
}
\context {
\Staff
\RemoveEmptyStaves
\override VerticalAxisGroup.remove-first = ##t
}
%Metronome_mark_engraver
}
\midi {
\tempo 4=90
}
}
}