Re: How can I increase the distance between grouped staves

2019-11-21 Thread Phil Holmes
- Original Message - From: "Karsten Reincke" To: "Lilypond-User Mailing List" Cc: Sent: Saturday, November 09, 2019 1:13 PM Subject: How can I increase the distance between grouped staves Dear Friends; and (hopefully) a last question before I can gove something (hopefully) useful

Re: tie & tag

2019-11-21 Thread David Kastrup
Gianmaria Lari writes: > I would expect this code > > > \version "2.21.00" > test = {\tag #'first c' > \tag #'second e'} > \keepWithTag #'first {\test~\test} > \keepWithTag #'second {\test~\test} > > ... generates two scores > > c~c > > and > > e~e > > but it doesn't! It generates > > c

Re: How to obtain the same midi channel for both the staves of a PianoStaff

2019-11-21 Thread Paolo Prete
According to this post: Re: MIDI assignment: two staffs to same channel | | | | | | | | | | | Re: MIDI assignment: two staffs to same channel | | | I set the channelMapping for the same instrument (see the snippet below). But it still produces two separate channels

Tags with multiple bookparts

2019-11-21 Thread Peter Toye
I want to produce two different outputs from the same music which has several bookparts. Tagging would seem ideal for this, but it seems that \keepWithTag is only valid within \score {}. Oddly, Frescobaldi's auto-complete allows me to type it both before the \book block and before the first

Re: tie & tag

2019-11-21 Thread Gianmaria Lari
On Thu, Nov 21, 2019, 5:35 PM David Kastrup wrote: > Gianmaria Lari writes: > > > I would expect this code > > > > > > \version "2.21.00" > > test = {\tag #'first c' > > \tag #'second e'} > > \keepWithTag #'first {\test~\test} > > \keepWithTag #'second {\test~\test} > > > > ...

tie & tag

2019-11-21 Thread Gianmaria Lari
I would expect this code \version "2.21.00" test = {\tag #'first c' \tag #'second e'} \keepWithTag #'first {\test~\test} \keepWithTag #'second {\test~\test} ... generates two scores c~c and e~e but it doesn't! It generates c c and e~e Why no ties in the first score? Any "fix"?

Re: tie & tag

2019-11-21 Thread Gianmaria Lari
Consider this situation: \version "2.21.00" \tagGroup #'(screenOut midiOut) nc = {\tag #'midiOut \tag #'screenOut c' } nd = {\tag #'midiOut \tag #'screenOut d' } myScore = {\nc \nd \nc \nd~\nd} \score {\keepWithTag #'screenOut \myScore \layout{}} \score {\keepWithTag #'midiOut

Re: tie & tag

2019-11-21 Thread Aaron Hill
On 2019-11-21 3:58 pm, Aaron Hill wrote: Here's something you can do in 2.19.83: \version "2.19.83" \tagGroup #'(screenOut midiOut) nc = {\tag #'midiOut \tag #'screenOut c' } nd = {\tag #'midiOut \tag #'screenOut d' } myScore = {\nc \nd \nc << \nd s~ >> \nd} \score

Re: tie & tag

2019-11-21 Thread Aaron Hill
On 2019-11-21 3:11 pm, Gianmaria Lari wrote: Consider this situation: \version "2.21.00" \tagGroup #'(screenOut midiOut) nc = {\tag #'midiOut \tag #'screenOut c' } nd = {\tag #'midiOut \tag #'screenOut d' } myScore = {\nc \nd \nc \nd~\nd} \score {\keepWithTag #'screenOut \myScore

Re: Tags with multiple bookparts

2019-11-21 Thread Simon Albrecht
Hi Peter, \keepWithTag and similar are music functions and take music as their second argument, that’s why they don’t work as you wish on \book or \bookpart level. There would certainly be ways to work around this using custom Scheme functions, but I use to think that it’s better to use

Re: tie & tag

2019-11-21 Thread Gianmaria Lari
Ciao Aaron, you wrote: > > Here's something you can do in 2.19.83: > > > > > > \version "2.19.83" > > > > \tagGroup #'(screenOut midiOut) > > nc = {\tag #'midiOut \tag #'screenOut c' } > > nd = {\tag #'midiOut \tag #'screenOut d' } > > myScore = {\nc \nd \nc << \nd s~ >> \nd} >