Re: Barcheck failure warnings for lyrics in parallel mode

2018-08-08 Thread Galen Menzel
On 8 Aug 2018, at 14:10, David Kastrup wrote: "Galen Menzel" writes: So basically explicit bar markings and lyrics just don’t play nicely together? And auto-length lyrics. If you give the lyric syllables explicit durations and not use \lyricsto/\addlyrics but just set associatedVoice

Re: Piano, voices and stem directions

2018-08-08 Thread Torsten Hämmerle
Hi Joram, This is all about the transitions between both hands: the downstem notes are to be played by the left hand. HTH, Torsten -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html ___ lilypond-user mailing list

Re: Lilypond website down?

2018-08-08 Thread Andrew Bernard
Hi Phil, Google? Isn't that a commercial service? Who pays for it? Andrew On Thu, 9 Aug 2018 at 05:40, Phil Holmes wrote: > It's hosted by Google these days, so I assume they have a means of > monitoring and fixing this... > > ___ lilypond-user

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread David Kastrup
Thomas Morley writes: > Or with other words, the rhythm is wrong in the line labeled with %% <== > > controlDivisi = { > \switchOn > s4 s s s > \switchOff > s %% <== > \switchOn > s1 > } > > And I'm blind ... at least today. It's more like that I'm better at answering "how would

Piano, voices and stem directions

2018-08-08 Thread Noeck
Dear all, I am trying to transcribe a prelude for piano by Rachmaninoff (Op. 23, No. 7). A (not so) minimal example is appended below. The left hand is always the same like in the lowest staff group. It is not directly part of the question but might hint at some left-hand/right-hand switches. I

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread Thomas Morley
2018-08-09 0:09 GMT+02:00 David Kastrup : > Thomas Morley writes: > >> 2018-08-08 22:21 GMT+02:00 Thomas Morley : >> >>> >>> Well, this whole post was meant to explain my thoughts while coding >>> the example from my previous mail. >>> I expected the code to fail like my previous. >>> It doesn't.

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread David Kastrup
Thomas Morley writes: > 2018-08-08 22:21 GMT+02:00 Thomas Morley : > >> >> Well, this whole post was meant to explain my thoughts while coding >> the example from my previous mail. >> I expected the code to fail like my previous. >> It doesn't. >> Though, even after your hints above, what's the

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread Thomas Morley
2018-08-08 22:21 GMT+02:00 Thomas Morley : > > Well, this whole post was meant to explain my thoughts while coding > the example from my previous mail. > I expected the code to fail like my previous. > It doesn't. > Though, even after your hints above, what's the essential difference? > > I'll

Re: Barcheck failure warnings for lyrics in parallel mode

2018-08-08 Thread David Kastrup
"Galen Menzel" writes: > On 7 Aug 2018, at 14:53, David Wright wrote: > >> On Tue 07 Aug 2018 at 12:30:03 (-0700), Galen Menzel wrote: >> >>> Now, although `lyrics_c` is a silly way to write a lyric line, >>> `lyrics_b` seems reasonable to me. Is there a better way to define a >>> lyric line in

Re: Lilypond website down?

2018-08-08 Thread Karlin High
On 8/8/2018 2:39 PM, Phil Holmes wrote: It's hosted by Google these days, so I assume they have a means of monitoring and fixing this... -- Phil Holmes - Original Message - *From:* Saul Tobin *To:* Lilypond-User Mailing List

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread Thomas Morley
2018-08-08 15:25 GMT+02:00 David Kastrup : > Thomas Morley writes: > >> 2018-08-07 21:42 GMT+02:00 David Kastrup : >>> Thomas Morley writes: >>> 2018-08-07 20:28 GMT+02:00 David Kastrup : > Thomas Morley writes: >>> Ok, let me chime in: I've basically developed some of the

Re: Lilypond website down?

2018-08-08 Thread Phil Holmes
It's hosted by Google these days, so I assume they have a means of monitoring and fixing this... -- Phil Holmes - Original Message - From: Saul Tobin To: Lilypond-User Mailing List Sent: Wednesday, August 08, 2018 6:37 PM Subject: Lilypond website down? Looks like

Re: Barcheck failure warnings for lyrics in parallel mode

2018-08-08 Thread Galen Menzel
On 7 Aug 2018, at 14:53, David Wright wrote: On Tue 07 Aug 2018 at 12:30:03 (-0700), Galen Menzel wrote: Now, although `lyrics_c` is a silly way to write a lyric line, `lyrics_b` seems reasonable to me. Is there a better way to define a lyric line in a `parallelMusic` definition so that

Lilypond website down?

2018-08-08 Thread Saul Tobin
Looks like Lilypond.org has been down since yesterday. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: question about large-scale use of Pitch objects

2018-08-08 Thread David Kastrup
David Nalesnik writes: > On Wed, Aug 8, 2018 at 10:15 AM David Kastrup wrote: >> >> Pitches as a data structure contain one allocation. Ah, not quite, I forgot an indirection. One SCM allocation (standard size) and one C++ heap allocation (data structure size). >> In contrast, a list

Re: question about large-scale use of Pitch objects

2018-08-08 Thread David Nalesnik
On Wed, Aug 8, 2018 at 10:15 AM David Kastrup wrote: > > David Nalesnik writes: > > > Hi all, > > > > I'm working with very large Scheme lists of pitches in an ly file, > > transforming them, and passing them about from function to function. > > Right now, I'm using actual Pitch objects (such as

Re: question about large-scale use of Pitch objects

2018-08-08 Thread David Kastrup
David Nalesnik writes: > Hi all, > > I'm working with very large Scheme lists of pitches in an ly file, > transforming them, and passing them about from function to function. > Right now, I'm using actual Pitch objects (such as you would produce > with ly:make-pitch). Would it be a better idea

question about large-scale use of Pitch objects

2018-08-08 Thread David Nalesnik
Hi all, I'm working with very large Scheme lists of pitches in an ly file, transforming them, and passing them about from function to function. Right now, I'm using actual Pitch objects (such as you would produce with ly:make-pitch). Would it be a better idea to work with pitches simply as

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread David Kastrup
Thomas Morley writes: > 2018-08-07 21:42 GMT+02:00 David Kastrup : >> Thomas Morley writes: >> >>> 2018-08-07 20:28 GMT+02:00 David Kastrup : Thomas Morley writes: >>> >> Ok, let me chime in: I've basically developed some of the low-level >> mechanisms for divisi staves. >

Re: New snippet: remove staff if another is alive (for wind divisi)

2018-08-08 Thread Thomas Morley
2018-08-07 21:42 GMT+02:00 David Kastrup : > Thomas Morley writes: > >> 2018-08-07 20:28 GMT+02:00 David Kastrup : >>> Thomas Morley writes: >> > Ok, let me chime in: I've basically developed some of the low-level > mechanisms for divisi staves. You mean that 'make-dead-when