Re: tag and default

2018-04-12 Thread Gianmaria Lari
On 12 April 2018 at 14:16, David Kastrup wrote: > Gianmaria Lari writes: > > > On 12 April 2018 at 11:42, David Kastrup wrote: > >> > >> What are you trying to do? Basically you are asking whether you can > >> make LilyPond do something different without telling it to make > >> something diffe

Re: tag and default

2018-04-12 Thread David Kastrup
Gianmaria Lari writes: > On 12 April 2018 at 11:42, David Kastrup wrote: >> >> What are you trying to do? Basically you are asking whether you can >> make LilyPond do something different without telling it to make >> something different. >> >> You will need to provide more details of just what

Re: tag and default

2018-04-12 Thread Gianmaria Lari
On 12 April 2018 at 11:42, David Kastrup wrote: > Gianmaria Lari writes: > > > This code ... > > > > \version "2.19.81" > > var = { > > \tag #'mya {a} > > \tag #'myb {b} > > } > > > > { \keepWithTag #'mya \var } > > { \keepWithTag #'myb \var } > > { \var} > > > > creates three scores: > > >

Re: tag and default

2018-04-12 Thread David Kastrup
Gianmaria Lari writes: > This code ... > > \version "2.19.81" > var = { > \tag #'mya {a} > \tag #'myb {b} > } > > { \keepWithTag #'mya \var } > { \keepWithTag #'myb \var } > { \var} > > creates three scores: > > 1) a > 2) b > 3) a b > > In the third case, where no \keepWithTag is specified, l

tag and default

2018-04-12 Thread Gianmaria Lari
This code ... \version "2.19.81" var = { \tag #'mya {a} \tag #'myb {b} } { \keepWithTag #'mya \var } { \keepWithTag #'myb \var } { \var} creates three scores: 1) a 2) b 3) a b In the third case, where no \keepWithTag is specified, lilypond returns all elements (a and b). Is there any way