Add more music
This commit is contained in:
parent
d66ada1549
commit
68529b1539
4 changed files with 199 additions and 32 deletions
|
@ -13,19 +13,97 @@ pianoRHMusic = {
|
||||||
\clef "treble"
|
\clef "treble"
|
||||||
\key b \minor
|
\key b \minor
|
||||||
|
|
||||||
\fixed f' {
|
\repeat volta 2 {
|
||||||
\stub
|
\relative c'' {
|
||||||
|
b8 d fs b, d fs b, d
|
||||||
|
| % 2
|
||||||
|
a cs e a, cs e a, cs
|
||||||
|
| % 3
|
||||||
|
g b d g, b d g, b
|
||||||
|
| % 4
|
||||||
|
a fs' cs a fs' cs a cs
|
||||||
|
| % 5
|
||||||
|
b d fs b, d fs b, d
|
||||||
|
| % 6
|
||||||
|
a cs e a, cs e a, cs
|
||||||
|
| % 7
|
||||||
|
g d' b g d' b g b
|
||||||
|
| % 8
|
||||||
|
a fs' cs a fs' cs a cs
|
||||||
|
| % 9
|
||||||
|
|
||||||
|
b8 d fs b, d a' b, d
|
||||||
|
|
|
||||||
|
b d a' b, d g b, d
|
||||||
|
|
|
||||||
|
a d fs a, d g a, d
|
||||||
|
|
|
||||||
|
a cs e a, cs fs a, cs
|
||||||
|
|
|
||||||
|
b d fs b, d a' b, d
|
||||||
|
|
|
||||||
|
b d a' b, d g b, d
|
||||||
|
|
|
||||||
|
a d fs a, d e a, d
|
||||||
|
|
|
||||||
|
a cs e a, cs fs a, cs
|
||||||
|
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pianoLHMusic = {
|
pianoLHMusic = {
|
||||||
\meterAndTempo
|
\meterAndTempo
|
||||||
\clef "bass"
|
\clef "bass_8"
|
||||||
\key b \minor
|
\key b \minor
|
||||||
|
|
||||||
\fixed f' {
|
\repeat volta 2 {
|
||||||
\stub
|
\relative c {
|
||||||
|
b4. b b4
|
||||||
|
| % 2
|
||||||
|
a2 r4 a
|
||||||
|
| % 3
|
||||||
|
g2 r4 g
|
||||||
|
| % 4
|
||||||
|
a2 r4 a
|
||||||
|
| % 5
|
||||||
|
b4. b b4
|
||||||
|
| % 6
|
||||||
|
a4. a a4
|
||||||
|
| % 7
|
||||||
|
g4. g g4
|
||||||
|
| % 8
|
||||||
|
a4. a a4
|
||||||
|
| % 9
|
||||||
|
|
||||||
|
|
||||||
|
b,1 | g | d' | a |
|
||||||
|
b1 | g | d' | a |
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
accordionMusic = {
|
||||||
|
\meterAndTempo
|
||||||
|
\clef "treble"
|
||||||
|
\key b \minor
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
|
\relative c'' {
|
||||||
|
R1*8 |
|
||||||
|
\grace {b,8 d fs} b2. r4 |
|
||||||
|
\grace {g,8 b d} g2. r4 |
|
||||||
|
\grace {d8 fs a} d2. r4 |
|
||||||
|
\grace {a,8 cs e} a2. r4 |
|
||||||
|
|
||||||
|
\grace {b,8 d fs} b2. a4 |
|
||||||
|
\grace {g,8 b d} g2. fs4 |
|
||||||
|
\grace {d8 fs a} d2. cs4 |
|
||||||
|
\grace {a,8 cs e} a2. g4 |
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fs'4
|
||||||
|
\bar "|."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,6 +114,13 @@ staffMelodica = \new Staff \with {
|
||||||
} \melodicaMusic
|
} \melodicaMusic
|
||||||
|
|
||||||
|
|
||||||
|
staffAccordion = \new Staff \with {
|
||||||
|
instrumentName = "Accordion"
|
||||||
|
shortInstrumentName = "Acc."
|
||||||
|
midiInstrument = "Accordion"
|
||||||
|
} \accordionMusic
|
||||||
|
|
||||||
|
|
||||||
staffPiano = \new PianoStaff \with {
|
staffPiano = \new PianoStaff \with {
|
||||||
instrumentName = "Piano"
|
instrumentName = "Piano"
|
||||||
shortInstrumentName = "P."
|
shortInstrumentName = "P."
|
||||||
|
|
|
@ -9,10 +9,36 @@ violinMusic = {
|
||||||
|
|
||||||
celloMusic = {
|
celloMusic = {
|
||||||
\meterAndTempo
|
\meterAndTempo
|
||||||
\clef "bass"
|
\clef "bass_8"
|
||||||
\key b \minor
|
\key b \minor
|
||||||
|
|
||||||
\stub
|
\repeat volta 2 {
|
||||||
|
|
||||||
|
\fixed c, {
|
||||||
|
b1 | e | d | a |
|
||||||
|
b1 | e | d | a |
|
||||||
|
}
|
||||||
|
|
||||||
|
\relative c, {
|
||||||
|
b8 d4 d8 fs4 a,
|
||||||
|
| % 2
|
||||||
|
g2. r4
|
||||||
|
| % 3
|
||||||
|
a8 d r8 d fs4 d
|
||||||
|
| % 4
|
||||||
|
cs4 r2. |
|
||||||
|
|
||||||
|
b'8 d,4 d8 d4 fs,
|
||||||
|
| % 2
|
||||||
|
g2. r4
|
||||||
|
| % 3
|
||||||
|
fs2 fs4 g
|
||||||
|
| % 4
|
||||||
|
a2. r4
|
||||||
|
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,6 +46,7 @@ guitarMusic = {
|
||||||
\meterAndTempo
|
\meterAndTempo
|
||||||
\key b \minor
|
\key b \minor
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
\chordmode {
|
\chordmode {
|
||||||
\repeat unfold 2 {
|
\repeat unfold 2 {
|
||||||
b,1:m | a,:9 | g, | a, |
|
b,1:m | a,:9 | g, | a, |
|
||||||
|
@ -28,6 +55,7 @@ guitarMusic = {
|
||||||
b,:m | g, | d, | a, |
|
b,:m | g, | d, | a, |
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,5 +84,4 @@ staffGuitar = \new Staff \with {
|
||||||
staffgroupStrings = \new StaffGroup <<
|
staffgroupStrings = \new StaffGroup <<
|
||||||
\staffViolin
|
\staffViolin
|
||||||
\staffCello
|
\staffCello
|
||||||
\staffGuitar
|
|
||||||
>>
|
>>
|
||||||
|
|
|
@ -3,20 +3,26 @@ vocalsIMusic = {
|
||||||
\clef "treble"
|
\clef "treble"
|
||||||
\key b \minor
|
\key b \minor
|
||||||
|
|
||||||
|
\repeat volta 2 {
|
||||||
\relative c' {
|
\relative c' {
|
||||||
r4 b'8 a b a b a | b a~a e~e
|
r4 b'8 a b a b a | b a~a e~e
|
||||||
e e e | d d~d d~d e d4 | cs8 d~d cs~cs4 r | \break
|
e e e | d d~d d~d e d4 | cs8 d~d cs~cs4 r |
|
||||||
|
% \break
|
||||||
r4 b'8 a b a b a | b a~a e~e
|
r4 b'8 a b a b a | b a~a e~e
|
||||||
e e e | d d d d d d e d | cs d~d cs~cs4 r | \break
|
e e e | d d d d d d e d | cs d~d cs~cs4 r |
|
||||||
|
% \break
|
||||||
}
|
}
|
||||||
|
|
||||||
\relative c'' {
|
\relative c'' {
|
||||||
b4 b8 b~b b~4 | d8 b b b~b b~4 |
|
b4 b8 b~b b~4 | d8 b b b~b b~4 |
|
||||||
d4~8 d~d4 d | e cs8 cs~4 r | \break
|
d8 d~8 d~d4 d | e cs8 cs~4 r |
|
||||||
|
% \break
|
||||||
b4 b8 b~b b~4 | d8 d d a~a a~4 |
|
b4 b8 b~b b~4 | d8 d d a~a a~4 |
|
||||||
fs8 fs~fs fs~4 fs | a4 a8 a8~a4 r | \break
|
fs4 fs8 fs~4 fs | a4 a8 a8~a4 r |
|
||||||
|
% \break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
vocalsIIMusic = {
|
vocalsIIMusic = {
|
||||||
\meterAndTempo
|
\meterAndTempo
|
||||||
|
@ -26,6 +32,14 @@ vocalsIIMusic = {
|
||||||
\stub
|
\stub
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vocalsIIIMusic = {
|
||||||
|
\meterAndTempo
|
||||||
|
\clef "treble"
|
||||||
|
\key b \minor
|
||||||
|
|
||||||
|
\stub
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
vocalsILyrics = \lyricmode {
|
vocalsILyrics = \lyricmode {
|
||||||
\set stanza = "1. "
|
\set stanza = "1. "
|
||||||
|
@ -36,29 +50,64 @@ vocalsILyrics = \lyricmode {
|
||||||
|
|
||||||
\set stanza = "C. "
|
\set stanza = "C. "
|
||||||
Wel -- kom, wel -- kom, kom naar de kel -- der,
|
Wel -- kom, wel -- kom, kom naar de kel -- der,
|
||||||
(zo gaat mijn me -- lo -- die).
|
in het echt of di -- gi -- taal.
|
||||||
Wel -- kom, wel -- kom, kom naar de kel -- der,
|
Wel -- kom, wel -- kom, kom naar de kel -- der,
|
||||||
Han -- nes, schrijf meer tekst voor mij.
|
start van -- daag je Zeus -- ver -- haal.
|
||||||
|
}
|
||||||
|
vocalsILyricsStII = \lyricmode {
|
||||||
|
\set stanza = "2. "
|
||||||
|
In die kel -- der heb ik veel ge -- leerd __ _
|
||||||
|
en tot diep in de nacht ge -- prog -- ram -- meerd.
|
||||||
|
Al die tijd ben~'k nooit al -- leen ge -- weest, __ _
|
||||||
|
die mo -- men -- ten met mijn vrien -- den koes -- ter ik het meest.
|
||||||
}
|
}
|
||||||
|
|
||||||
vocalsIILyrics = \lyricmode {
|
vocalsIILyrics = \lyricmode {
|
||||||
}
|
}
|
||||||
|
vocalsIILyricsStII = \lyricmode {
|
||||||
|
}
|
||||||
|
|
||||||
|
vocalsIIILyrics = \lyricmode {
|
||||||
|
}
|
||||||
|
vocalsIIILyricsStII = \lyricmode {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
staffgroupVocals = \new ChoirStaff <<
|
staffgroupVocals = \new ChoirStaff <<
|
||||||
|
%\new Staff \with {
|
||||||
|
%instrumentName = "Zang"
|
||||||
|
%midiInstrument = "Alto Sax"
|
||||||
|
%}
|
||||||
|
%\new Voice \vocalsIMusic
|
||||||
|
%\addlyrics \vocalsILyrics
|
||||||
|
%\addlyrics \vocalsILyricsStII
|
||||||
|
|
||||||
|
% --------------------------------
|
||||||
|
|
||||||
\new Staff \with {
|
\new Staff \with {
|
||||||
%instrumentName = "Zang 1"
|
instrumentName = "Felixiaan"
|
||||||
%shortInstrumentName = "Z1"
|
shortInstrumentName = "Fxn."
|
||||||
midiInstrument = "Alto Sax"
|
midiInstrument = "Alto Sax"
|
||||||
}
|
}
|
||||||
\new Voice = "vocals1" \vocalsIMusic
|
\new Voice \vocalsIMusic
|
||||||
\new Lyrics \lyricsto "vocals1" \vocalsILyrics
|
\addlyrics \vocalsILyrics
|
||||||
|
\addlyrics \vocalsILyricsStII
|
||||||
|
|
||||||
%\new Staff \with {
|
\new Staff \with {
|
||||||
%instrumentName = "Zang 2"
|
instrumentName = "Midgard"
|
||||||
%shortInstrumentName = "Z2"
|
shortInstrumentName = "Mid."
|
||||||
%midiInstrument = "Tenor Sax"
|
midiInstrument = "Tenor Sax"
|
||||||
%}
|
}
|
||||||
%\new Voice = "vocals2" \vocalsIIMusic
|
\new Voice \vocalsIIMusic
|
||||||
%\new Lyrics \lyricsto "vocals2" \vocalsIILyrics
|
\addlyrics \vocalsIILyrics
|
||||||
|
\addlyrics \vocalsIILyricsStII
|
||||||
|
|
||||||
|
\new Staff \with {
|
||||||
|
instrumentName = "Noctua"
|
||||||
|
shortInstrumentName = "Noc."
|
||||||
|
midiInstrument = "Tenor Sax"
|
||||||
|
}
|
||||||
|
\new Voice = "vocals3" \vocalsIIIMusic
|
||||||
|
\addlyrics \vocalsIIILyrics
|
||||||
|
\addlyrics \vocalsIIILyricsStII
|
||||||
>>
|
>>
|
||||||
|
|
20
welkom.ly
20
welkom.ly
|
@ -6,11 +6,14 @@
|
||||||
subtitle = \markup{ \concat { "Voor de " \italic{on/off-generatie} } }
|
subtitle = \markup{ \concat { "Voor de " \italic{on/off-generatie} } }
|
||||||
tagline = ##f
|
tagline = ##f
|
||||||
}
|
}
|
||||||
|
%#(set-global-staff-size 15)
|
||||||
#(set-global-staff-size 18)
|
#(set-global-staff-size 18)
|
||||||
#(set-default-paper-size "a4")
|
#(set-default-paper-size "a4")
|
||||||
\paper {
|
\paper {
|
||||||
%indent = 3.0\cm % add space for instrumentName
|
indent = 3.0\cm % add space for instrumentName
|
||||||
%short-indent = 1.5\cm % add less space for shortInstrumentName
|
short-indent = 1.5\cm % add less space for shortInstrumentName
|
||||||
|
%ragged-last-bottom = ##f
|
||||||
|
%ragged-bottom = ##f
|
||||||
}
|
}
|
||||||
|
|
||||||
meterAndTempo = {
|
meterAndTempo = {
|
||||||
|
@ -19,7 +22,9 @@ meterAndTempo = {
|
||||||
}
|
}
|
||||||
|
|
||||||
stub = {
|
stub = {
|
||||||
R1*16 | \bar "||"
|
\repeat volta 2 {
|
||||||
|
R1*16
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
\include "parts-keys.ly"
|
\include "parts-keys.ly"
|
||||||
|
@ -32,12 +37,13 @@ stub = {
|
||||||
\score {
|
\score {
|
||||||
\compressMMRests
|
\compressMMRests
|
||||||
<<
|
<<
|
||||||
%\staffgroupPercussion
|
|
||||||
%\staffMelodica
|
|
||||||
%\staffPiano
|
|
||||||
\chordNames
|
\chordNames
|
||||||
\staffgroupVocals
|
\staffgroupVocals
|
||||||
%\staffgroupStrings
|
\staffPiano
|
||||||
|
\staffgroupStrings
|
||||||
|
\staffMelodica
|
||||||
|
\staffAccordion
|
||||||
|
\staffgroupPercussion
|
||||||
>>
|
>>
|
||||||
\layout {
|
\layout {
|
||||||
\context { \GrandStaff \accepts "Lyrics" }
|
\context { \GrandStaff \accepts "Lyrics" }
|
||||||
|
|
Loading…
Reference in a new issue