I can't seem to find a snippet for typesetting lyrics with chord symbols
above with no staff visible between them. (The invisible staff would
give the spacing, that is rhythm).
Below is the nearest I have got - the only problem is that the
transparent staff takes up space (even if you reduce the number of staff
lines).
Is there a known method of getting lyrics with chord symbols?

Richard

\version "2.18.0"

% The music follows

MvmntIVoiceI = {
         f'4 <f' aes' ees''> <f' bes' ees'' g''>2
         <g' fis'' e'''> 
}

MvmntIVoiceII = {
         c'4 d' e' e'
         f'
}

MvmntIVoiceIILyricsVerseI = \lyricmode { 
the words of this song 
}

MvmntIVoiceIIVerseIContext = \context Lyrics = MvmntIVoiceIIVerseI \lyricsto 
VoiceIIMvmntI \MvmntIVoiceIILyricsVerseI

\layout{
    \context {
      \Staff
      \remove Staff_symbol_engraver
    }
  }

\score { %Start of Movement
 <<
 \new ChordNames 
    \MvmntIVoiceI
%Start of Staff
\new Staff = "Unnamed"  << 
 \new Voice = "VoiceIIMvmntI"  { 
         \once \override Staff.TimeSignature.transparent = ##t
         \once \override Staff.Clef.transparent = ##t
         \hideNotes
         \MvmntIVoiceII  
              }
>>
%End of Staff
        \new Lyrics = MvmntIVoiceIIVerseI
        \MvmntIVoiceIIVerseIContext
>>
} 





























_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to