\version "2.13.58" global = { \key c \major \override Staff.Stem #'transparent = ##t } \paper { myStaffSize = #20 #(define fonts (make-pango-font-tree "Palatino" "Nimbus Sans" "Luxi Mono" (/ myStaffSize 20))) } noteOff = { \override Staff.NoteHead #'transparent = ##t } noteOn = { \override Staff.NoteHead #'transparent = ##f } tenorVoice = \relative c'' { \global \dynamicUp % Music follows here. \cadenzaOn a\breve \noteOff a4 a a %God the Father almighty a a a a a %dear brothers and sis- \noteOn g4 \bar "|" g4 a\breve \noteOff \bar "" \break \noteOn a\breve \noteOff a4 a a a a %prayer of our heart be directed a a a a a a a a %for his will it is tht all humanity \bar "" \break \noteOn a\breve \noteOff a4 a a a a a %should be saved and come to the \noteOn g4 a g g e \bar "|." } verse = \lyricmode { % Lyrics follow here. To God the Father almighty, dear brothers and sis -- ters, may every prayer of our heart be directed, for his will it is that all humanity should be saved and come to the know -- ledge of the truth. } \score { \new Staff \with { } { \clef "treble" \tenorVoice } \addlyrics { \verse } \layout { indent = #0 ragged-right = ##t ragegd-bottom = ##t line-width = 6\in \context { \Staff \remove Time_signature_engraver } \context { \Score \override NonMusicalPaperColumn #'line-break-permission = ##f \override NonMusicalPaperColumn #'page-break-permission = ##f } } }