lilypond-user
[Top][All Lists]
Advanced

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

How to use global variables with \Markup


From: Paul Harouff
Subject: How to use global variables with \Markup
Date: Sun, 4 Feb 2007 22:55:56 -0600

I want to alternate markup text verses (reader) with scores (choir). The text verses change from week to week, but the scores remain the same.
 
What I want to do is something like this:
 
%
% VERSES HERE
%
BVone = \new Text { Enter verse one text here }
BVtwo = \new Text { Enter verse two text here }
BVthree = \new Text { Enter verse three text here }
 
%
% MUSIC HERE
%
\score {
}
\markup { \hspace #5.0  \fontsize #2 \italic \with-color #red \override #'(line-width . 90) \justify \BVone
}
\score {
}
\markup { \hspace #5.0  \fontsize #2 \italic \with-color #red \override #'(line-width . 90) \justify \BVtwo
}
\score {
}
\markup { \hspace #5.0  \fontsize #2 \italic \with-color #red \override #'(line-width . 90) \justify \BVthree
}
 
Can anyone tell me a workaround that will do the same thing?
 
Paul

reply via email to

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