lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Insert text between staves


From: Br. Gabriel-Marie | SSPX
Subject: Insert text between staves
Date: Thu, 23 Jun 2016 10:51:34 -0500
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2


How can I insert this text in between staves?

mytext = \markup { \tiny \italic  "Repeat Chorus after every verse "  }

The only place I can seem to place it is *outside* the score - either before or after it.  I've tried putting it in other places too, to no avail.  If I put it before or after the score it just appears at the top of the score on the first page.
--------------------------------------

\paper {
    system-system-spacing = #'((basic-distance . 0.3) (padding . 2) )
    markup-system-spacing = #'((basic-distance . 0.3) (padding . 2) )        %re-aligns the first page to th top
    %ragged-last-bottom = ##f
    ragged-bottom = ##f
}

chorus= \new Voice = "chorus" \relative c'' {
    g a b c d \break
}
verses = \new Voice = "verses" \relative c'' {
    g a b c d \break
}
chorusLyrics = \new Lyrics \lyricsto "chorus" {
    These are the words to the chorus
}
firstVerse =  \new Lyrics \lyricsto "verses" {
    The words to my song
}
secondVerse =  \new Lyrics \lyricsto "verses" {
    Other words go here
}


\score{
<<
    \new Staff {  \chorus \myText \pageBreak \myText \verses }
     \chorusLyrics
    \firstVerse
    \secondVerse

>>
\layout{}
}

reply via email to

[Prev in Thread] Current Thread [Next in Thread]