Write the music we have so far

This commit is contained in:
Midgard 2020-09-20 00:13:28 +02:00
parent 83f48538eb
commit 88a59d429f
Signed by: midgard
GPG key ID: 511C112F1331BBB4
4 changed files with 63 additions and 29 deletions

View file

@ -1,7 +1,7 @@
melodicaMusic = { melodicaMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \clef "treble"
\key f \major \key b \minor
\fixed f' { \fixed f' {
\stub \stub
@ -11,7 +11,7 @@ melodicaMusic = {
pianoRHMusic = { pianoRHMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \clef "treble"
\key f \major \key b \minor
\fixed f' { \fixed f' {
\stub \stub
@ -21,7 +21,7 @@ pianoRHMusic = {
pianoLHMusic = { pianoLHMusic = {
\meterAndTempo \meterAndTempo
\clef "bass" \clef "bass"
\key f \major \key b \minor
\fixed f' { \fixed f' {
\stub \stub

View file

@ -1,7 +1,7 @@
violinMusic = { violinMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \clef "treble"
\key f \major \key b \minor
\stub \stub
} }
@ -10,7 +10,7 @@ violinMusic = {
celloMusic = { celloMusic = {
\meterAndTempo \meterAndTempo
\clef "bass" \clef "bass"
\key f \major \key b \minor
\stub \stub
} }
@ -18,10 +18,16 @@ celloMusic = {
guitarMusic = { guitarMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \key b \minor
\key f \major
\stub \chordmode {
\repeat unfold 2 {
b,1:m | a,:9 | g, | a, |
}
\repeat unfold 2 {
b,:m | g, | d, | a, |
}
}
} }
@ -37,11 +43,15 @@ staffCello = \new Staff \with {
midiInstrument = "Cello" midiInstrument = "Cello"
} \celloMusic } \celloMusic
chordNames = \new ChordNames {
\guitarMusic
}
staffGuitar = \new Staff \with { staffGuitar = \new Staff \with {
instrumentName = "Gitaar" instrumentName = "Gitaar"
shortInstrumentName = "Gtr." shortInstrumentName = "Gtr."
midiInstrument = "Guitar" midiInstrument = "Guitar"
} \celloMusic } \guitarMusic
staffgroupStrings = \new StaffGroup << staffgroupStrings = \new StaffGroup <<
\staffViolin \staffViolin

View file

@ -1,21 +1,44 @@
vocalsIMusic = { vocalsIMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \clef "treble"
\key f \major \key b \minor
\stub \relative c' {
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
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
}
\relative c'' {
b4 b8 b~b b~4 | d8 b b b~b b~4 |
d4~8 d~d4 d | e cs8 cs~4 r | \break
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
}
} }
vocalsIIMusic = { vocalsIIMusic = {
\meterAndTempo \meterAndTempo
\clef "treble" \clef "treble"
\key f \major \key b \minor
\stub \stub
} }
vocalsILyrics = \lyricmode { vocalsILyrics = \lyricmode {
\set stanza = "1. "
Aan de u -- ni -- ver -- si -- teit van Gent
ben je als in -- for -- ma -- ti -- cus niet con -- tent,
wan -- neer je Zeus W -- P -- I niet kent,
en re -- gel -- mat -- ig in de kel -- der van S -- "9" __ _ bent.
\set stanza = "C. "
Wel -- kom, wel -- kom, kom naar de kel -- der,
(zo gaat mijn me -- lo -- die).
Wel -- kom, wel -- kom, kom naar de kel -- der,
Han -- nes, schrijf meer tekst voor mij.
} }
vocalsIILyrics = \lyricmode { vocalsIILyrics = \lyricmode {
@ -24,18 +47,18 @@ vocalsIILyrics = \lyricmode {
staffgroupVocals = \new ChoirStaff << staffgroupVocals = \new ChoirStaff <<
\new Staff \with { \new Staff \with {
instrumentName = "Zang 1" %instrumentName = "Zang 1"
shortInstrumentName = "Z1" %shortInstrumentName = "Z1"
midiInstrument = "Alto Sax" midiInstrument = "Alto Sax"
} }
\new Voice = "vocals1" \vocalsIMusic \new Voice = "vocals1" \vocalsIMusic
\new Lyrics \lyricsto "vocals1" \vocalsILyrics \new Lyrics \lyricsto "vocals1" \vocalsILyrics
\new Staff \with { %\new Staff \with {
instrumentName = "Zang 2" %instrumentName = "Zang 2"
shortInstrumentName = "Z2" %shortInstrumentName = "Z2"
midiInstrument = "Tenor Sax" %midiInstrument = "Tenor Sax"
} %}
\new Voice = "vocals2" \vocalsIIMusic %\new Voice = "vocals2" \vocalsIIMusic
\new Lyrics \lyricsto "vocals2" \vocalsIILyrics %\new Lyrics \lyricsto "vocals2" \vocalsIILyrics
>> >>

View file

@ -9,17 +9,17 @@
#(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
} }
meterAndTempo = { meterAndTempo = {
\time 4/4 \time 4/4
\tempo 4 = 102 \tempo 4 = 130
} }
stub = { stub = {
R1*4 | \bar "|." R1*16 | \bar "||"
} }
\include "parts-keys.ly" \include "parts-keys.ly"
@ -32,11 +32,12 @@ stub = {
\score { \score {
\compressMMRests \compressMMRests
<< <<
\staffgroupPercussion %\staffgroupPercussion
\staffMelodica %\staffMelodica
\staffPiano %\staffPiano
\chordNames
\staffgroupVocals \staffgroupVocals
\staffgroupStrings %\staffgroupStrings
>> >>
\layout { \layout {
\context { \GrandStaff \accepts "Lyrics" } \context { \GrandStaff \accepts "Lyrics" }