Re: Insert text between staves

2016-06-24 Thread David Wright
On Thu 23 Jun 2016 at 16:12:56 (-0500), Br. Gabriel-Marie | SSPX wrote: > Well, I know how to do *that* - that is, I know how to get text > above and below the staves. > > But I want text above and below the scores - sort of like a > subtitle. > > At the end of each page, about 3/4 inch below

Re: Insert text between staves

2016-06-23 Thread tisimst
= { \once \override TextScript.extra-offset = #'(X . Y) g_\markup { \with-dimension #'(0 . 0) #'(0 . 0) \myText } a b c d \break } and then adjust X and Y to move your text to the approximate desired location. You might try it with or without the "\with-dimensions ..." part to s

Re: Insert text between staves

2016-06-23 Thread tisimst
r staff and direct it down/up-ward, respectively: chorus = \new Voice = "chorus" \relative c'' { g a b c d_\myText \break } verses = \new Voice = "verses" \relative c'' { g^\myText a b c d \break } HTH, Abraham -- View this message in context: http://lilypond.1069038.n5

Insert text between staves

2016-06-23 Thread Br. Gabriel-Marie | SSPX
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