lilypond-user
[Top][All Lists]
Advanced

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

Re: \lyricsto and \tag problems


From: Pierre Perol-Schneider
Subject: Re: \lyricsto and \tag problems
Date: Fri, 10 Oct 2014 08:59:59 +0200

Hi Joram,

2014-10-10 1:49 GMT+02:00 Noeck <address@hidden>:
 
how should I write my code properly?

Try :


\version "2.19.15"

<<
  \new Staff \new Voice = sop { c' d' e' f' }
  \new Lyrics \keepWithTag "A" \lyricsto sop {
    \lyricmode {
      An \tag "A" example \tag "B" text
    }
  }
>>

% or:

myMusic = { c' d' e' f' }
myWords = \lyricmode {
    An \tag "A" example \tag "B" text
  }

<<
  \new Staff \new Voice = sop \myMusic
  \new Lyrics \keepWithTag "A" \lyricsto sop \myWords
>>


HTH,
Pierre



reply via email to

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