Back

De Heer is ons huis

intro

PNG - MP3 - MIDI

guitar PNG
source code
\version "2.24.3"

melody = \relative c' {
  \time 6/8
  \key a\major
  \tempo 4=94
  cis4.\5 e\4 | fis\4~ 8\4 8\4 gis\3 | \grace gis\3( a4\3) 8\3 4\3 8\3 | 8.\3 gis\3 fis\4 e\4 |
  cis4.\5 e\4 | fis2\4 r4 | e4.\4 fis4\4 a8\3 | b2.\3~ | 2.\3
}

chordNames = \new ChordNames {
  \set chordChanges = ##t
  \set midiMinimumVolume = #0.2
  \set midiMaximumVolume = #0.5
  \chordmode {
    a4. a:/cis | d2. | fis4.:m fis:m/e | d2.
    a4. a:/cis | d2. | fis4.:m fis:m/e | g2.*2

  }
}

#(set! paper-alist
        (cons '("my size" . (cons (* 5.4 in) (* 6 in))) paper-alist))

#(set-default-paper-size "my size")

\paper {
        line-width=5.4\in
        oddFooterMarkup=##f
        oddHeaderMarkup=##f
        bookTitleMarkup=##f
        scoreTitleMarkup=##f
        indent=0\in
}

#(set-global-staff-size 18 )

\layout { \omit Voice.StringNumber }

\book {
  \score {
    <<
      \melody
    >>
  }
  \score {
    \unfoldRepeats {
      <<
        \chordNames
        \melody
      >>
    }
    \midi{}
  }
}

\book {
  \bookOutputSuffix "guitar"
  \score {
    <<
      \chordNames
      \new Staff {
        \clef "treble_8"
        \melody
      }
      \new TabStaff \melody
    >>
  }
}