\include "notes/bassNotes.ly"
\include "notes/tenorNotes.ly"
\include "notes/altoNotes.ly"
\include "notes/sopranoNotes.ly"
\include "notes/pianoNotes.ly"

%\include "paper16.ly"

%{
\header {
    title = "Do Not Go Gentle Into That Good Night"
    composer = "Jule Slootbeek"
    poet = "Dylan Thomas"
    tagline = "Lilypond 1.6.0 by JSS '02"
    instrument = "SATB and Piano"
}
%}

global=
    \notes{
		\key d \minor
		\time 3/4
    }
    
\score {
    \notes {
    <
        \context ChoirStaff = chorus
        <
            \context Staff = soprano 
            <
                \global
                \clef treble
                \property Staff.instrument = "Soprano "
                \property Staff.midiInstrument = "flute"
                \sopranoNotes
                \context Lyrics = sopranoLyrics
                	\sopranoLyrics
            >
            
            \context Staff = alto
            <
                \global
                \clef treble
                \property Staff.instrument = "Alto "
                \property Staff.midiInstrument = "flute"
                \altoNotes
                \context Lyrics = altoLyrics
                	\altoLyrics
            >
            
            \context Staff = tenor 
            <
                \global
                \clef "G_8"
                \property Staff.instrument = "Tenor "
                \property Staff.midiInstrument = "flute"
                \tenorNotes
                \context Lyrics = tenorLyrics
                	\tenorLyrics
            >
            
            \context Staff = bass <
                \global
                \clef bass
                \property Staff.instrument = "Bass "
                \property Staff.midiInstrument = "flute"
                \bassNotes
                \context Lyrics = bassLyrics
                	\bassLyrics
            >
        >

        \context PianoStaff 
            <
                \property PianoStaff.instrument = "Piano  "
                \property PianoStaff.midiInstrument = "acoustic grand"
                
                \context Staff = treble  
                {
                    \global
                    \clef treble
                    \leftHand
                }
                
                \context Staff = bass 
                {
                    \global
                    \clef bass  
                    \rightHand
                }
            >
        >
    }
    \paper {
        \translator { \HaraKiriStaffContext }
    }
    
    \midi {
        \tempo 4=80
    }
}