Re: Hemiola indication

2013-11-07 Thread Eluze
and here's a kind of workaround: http://lilypond.1069038.n5.nabble.com/Ligaturebrackets-not-printed-after-line-break-tt80392.html#a80393 Eluze -- View this message in context: http://lilypond.1069038.n5.nabble.com/Hemiola-indication-tp152695p153506.html Sent from the User mailing list archive

Re: Hemiola indication

2013-11-07 Thread Eluze
Peter Toye wrote > Well, I've now tried 2.17.29 and this example doesn't print the first or > the last ligature. And still giving the infinity/nan warnings. Does it > work with you? > > \version "2.17.29" > \language "english" > \score { > << > \new Staff << > \relative c' { > \time 3/2 > \[ c1 \]

Re: Hemiola indication

2013-11-07 Thread Peter Toye
Well, I've now tried 2.17.29 and this example doesn't print the first or the last ligature. And still giving the infinity/nan warnings. Does it work with you? \version "2.17.29" \language "english" \score { << \new Staff << \relative c' { \time 3/2 \[ c1 \] \[ f2~ | f \] \[ c' b \] | \[ c2 b \]

Re: Hemiola indication

2013-10-31 Thread Peter Toye
Kieren, To continue... My tiny examples print OK in 2.17. But my original file doesn't. So it needs more exploration, which I don't have time for at the moment. WIll try later. Best regards, Peter mailto:lilyp...@ptoye.com www.ptoye.com - Sunday, October 20, 2013, 7:32

Re: Hemiola indication

2013-10-31 Thread Peter Toye
Hi Kieren, Just installed 2.17.29 and it's different but still wrong. Also it's giving a load of warning: Found infinity or nan in output. Substituting 0.0 errors which may or may not be connected to this issue. I think I'll put in a bug/enhancement report and see what happens. Best r

Re: Hemiola indication

2013-10-20 Thread Kieren MacMillan
Hi Peter, All three print fine here (2.17). Maybe try this with 2.16 (which I don't have): \version "2.16.2" \language "english" sopranoVoice = \relative c'' { \key c \major \numericTimeSignature \time 3/2 { \[ d2 ef \] \[ f | g \] \[ f1*15/16 s16 \]} } \score { \new Staff { \sopranoVoice } } H

Re: Hemiola indication

2013-10-20 Thread Peter Toye
Kieren, I was in the process of preparing one! \version "2.16.2" \language "english" sopranoVoice = \relative c'' { \key c \major \numericTimeSignature \time 3/2 { \[ d2 ef \] \[ f | g \] \[ f1 \]} } \score { \new Staff { \sopranoVoice } } The last ligature isn't printed. Best regards, Peter m

Re: Hemiola indication

2013-10-20 Thread Kieren MacMillan
Hi Peter, > It doesn't work too well (as the 2.16 doc says), and there's definitely a > problem where there's a 4-beat note (tied over the 3-beat bar) in the > relevant voice. Can't work out how to do that one. Might I suggest including a minimal snippet to the list, so we can see the exact pr

Re: Hemiola indication

2013-10-20 Thread Peter Toye
Thanks both. I'd not thought of it as "ancient" notation - its only Purcell! And I use it for Handel as well. "Early", maybe. It doesn't work too well (as the 2.16 doc says), and there's definitely a problem where there's a 4-beat note (tied over the 3-beat bar) in the relevant voice. Can't wor

Re: Hemiola indication

2013-10-20 Thread Marcos Press
I'm using the same as Mark but with back slash. c \[ a b e d \] It's actually a ligature in the docs. http://www.lilypond.org/doc/v2.17/Documentation/notation/ancient-notation_002d_002dcommon-features#ligatures also take a look at http://www.lilypond.org/doc/v2.17/Documentation/8e/lily-9b273927.

RE: Hemiola indication

2013-10-20 Thread Mark Stephen Mrotek
Peter, Does this help? \version "2.16.2" global = { \key c \major \numericTimeSignature \time 6/8 } violin = \relative c'' { \global c8 [ c c ] c [ c c ] | c [ c ] c [ c ] c [ c ] | } \score { \new Staff \violin \layout { } } Mark