lilypond-user
[Top][All Lists]
Advanced

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

Re: [Q] Rehearsal marks in parts


From: Paul Scott
Subject: Re: [Q] Rehearsal marks in parts
Date: Sun, 05 Nov 2006 13:10:57 -0700
User-agent: Icedove 1.5.0.7 (X11/20061013)

Victor Eijkhout wrote:
Version 2.9.27

Input:

parta = { r1 \mark\default r1 }
partb = { c1 \mark\default c1 }

\score {
<<
\new Staff = "x" {\parta}
\new Staff = "y" {\partb}
>>
}
My answer would be the same as Thies'

notes.ly contains:

global = { s1 \markdefault s1 }
parta = { R1 R1 }
partb = { c1 c1 }

parta.ly  contains:

score {
<<
\new Staff = "x" { << \global \parta >> }
>>
}

partb.ly  contains:

score {
<<
\new Staff = "x" { << \global \partb >> }
>>
}

score.ly contains:

\include "notes.ly"
score {
<<
\new Staff = "x" { << \global \parta >> }
\new Staff = "y" { \partb }
>>
}

HTH,

Paul





reply via email to

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