Euler:
...
> PartMfluteVoiceOne = \relative fis' {
> \clef "treble" \key d \major \time 3/4
> d'2 ^"Menuetto" e8( d) }
...
You can use text marks (see the notation manual) or
something like:
/// file a.ily
ma = { d'2 e }
mb = { fis2 g }
men = \markup{ Menuetto }
Men = { s2^\men s }
///
\include "a.ily"
\score {
<<
\new Staff \ma
\new Staff << \mb \Men >>
>>
}
///
\include "a.ily"
\score { \new Staff << \ma \Men >> }
///
\include "a.ily"
\score { \new Staff << \mb \Men >> }
///
Text marks align at bar lines, so if that's what you want,
use that.
Regards,
/Karl Hammar
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user