source code
\version "2.22.2"
melody = \relative c' {
\numericTimeSignature
\time 4/4
\tempo 4=62
\key d\minor
\partial 16 { r16} | d'2 c4 a4 | \grace { d8 e16 } f4 e d a |
bes c8 d e4 c | a16 d, e g a4 d8 b16 cis~ cis4
d2 c4 a4 | \grace{ d8 e16 } f8. e8 d'8 a16~ a8. fis8 d r16
bes'4 g8 f e4 r4 | f8 r e r d e fis a
}
lyricmelody = \relative c' {
\numericTimeSignature
\time 4/4
\tempo 4=62
\key d\minor
\partial 16 { d16 } | d8 bes'16 bes~ bes8 g16 g16~ g8 c,16 a'16~ a8 bes16 a16~
a d,8.~ d4 r4 r8 r16 d16
g8 a bes a16 g~ g4 r8 r16 c,16
a'8 bes a a16 a~ a4 r8 r16 d,16
d8 bes'16 bes~ bes8 a16 g~ g8 c,16 a'~ a8 bes16 a~
a d,8.~ d4 r4 r8 r16 d16
g8 c bes a16 g~ g4 r8 r16 f
e8 f e d16 d~ d4 r4
}
chordNames = \chordmode {
\set noChordSymbol = ""
\partial 16 { r16 } bes4 g:m7 c a:/cis | d2:sus2 d:/fis |
g:m c | f a4:sus2 a:7 |
bes4 g:m7 c a:/cis | d2:sus2 d:/fis |
g:m g:m/e | bes4:maj7 a:7 d:sus d:7
}
melodySax = \transpose es c \melody
songtext = \lyricmode {
Mijn God U vult mijn bord U vult mijn be -- ker2
U hebt iets moois be -- dacht en straks is het van mij.
U houdt mijn he -- le le -- ven in Uw hand -- den
en ik kom goed te -- recht, want dat hebt U ge -- zegd.
}
#(set! paper-alist
(cons '("my size" . (cons (* 5.4 in) (* 10 in))) paper-alist))
#(set-default-paper-size "my size")
\paper {
line-width=5.4\in
oddFooterMarkup=##f
oddHeaderMarkup=##f
bookTitleMarkup=##f
scoreTitleMarkup=##f
}
#(set-global-staff-size 16 )
\book {
\bookOutputSuffix "sax"
\paper{
indent=0.26\in
}
\score {
<<
\new ChordNames {
\set chordChanges = ##t
\chordNames
}
\new Voice = "Vocal"
\lyricmelody
\new Lyrics \lyricsto "Vocal" {
\songtext
}
\new Staff = "Piano" \with { instrumentName = "Pno" }
\melody
\new Staff = "Sax" \with { instrumentName = "Sax" }
\melodySax
>>
}
}
\book {
\paper{
indent=0\in
}
\score {
<<
\new ChordNames {
\set chordChanges = ##t
\chordNames
}
\new Voice = "Vocal"
\lyricmelody
\new Lyrics \lyricsto "Vocal" {
\songtext
}
\new Staff
\melody
>>
\midi{}
\layout{}
}
}