lilypond-user
[Top][All Lists]
Advanced

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

Re: Variables


From: karl
Subject: Re: Variables
Date: Sun, 2 Jun 2019 23:01:53 +0200 (CEST)

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




reply via email to

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