lilypond-user
[Top][All Lists]
Advanced

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

tag issue


From: Gianmaria Lari
Subject: tag issue
Date: Sat, 13 Apr 2019 11:15:31 +0200

I don't understand the following behaviour:

\version "2.18.2"
\tagGroup #'(testOne testTwo)

music = {
  \tag #'testOne b 
  \tag #'testTwo b^"M "
}

\keepWithTag #'testOne {\music~\music}
\keepWithTag #'testTwo {\music~\music}

I would expect this would generate two pretty similar scores: the first 
b~b 
and the second 
b^M~b^M
(so both with a tie)

but instead it generates: 
b b    (no tie!!)
and 
b^M~b^M 
 Where is the error?

* *

I noticed that if i invert the tag order 

music = {
  \tag #'testTwo b^"M" 
  \tag #'testOne b 
}

now the output is:

b~b
and
b^M b^M (no tie!)

Any help?
Thank you, g.


reply via email to

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