Re: odd behavior with acciaccatura in 1st position

2015-04-26 Thread Simon Albrecht

Am 26.04.2015 um 03:44 schrieb Cynthia Karl:

Message: 2
Date: Sun, 26 Apr 2015 10:09:13 +1000
From: Andrew Bernard andrew.bern...@gmail.com
To: lilypond-user@gnu.org
Subject: Re: odd behavior with acciaccatura in 1st position
Message-ID: etPan.553c2ca9.6b8b4567.185c@darkenergy.local
Content-Type: text/plain; charset=utf-8

Aha - of course you are correct! That?s the true root cause of the problem.

Andrew


Thanks.  I didn’t realize I was correct.  And, of course, I haven’t the 
slightest idea what you’re talking about.  Something to do with grace notes?
This referred to 
http://lists.gnu.org/archive/html/lilypond-user/2015-04/msg01090.html.


Yours, Simon

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-25 Thread Cynthia Karl
 
 Message: 2
 Date: Sun, 26 Apr 2015 10:09:13 +1000
 From: Andrew Bernard andrew.bern...@gmail.com
 To: lilypond-user@gnu.org
 Subject: Re: odd behavior with acciaccatura in 1st position
 Message-ID: etPan.553c2ca9.6b8b4567.185c@darkenergy.local
 Content-Type: text/plain; charset=utf-8
 
 Aha - of course you are correct! That?s the true root cause of the problem.
 
 Andrew


Thanks.  I didn’t realize I was correct.  And, of course, I haven’t the 
slightest idea what you’re talking about.  Something to do with grace notes?

Regards,
Patrick Karl
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-25 Thread Andrew Bernard
Aha - of course you are correct! That’s the true root cause of the problem.

Andrew


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-25 Thread Simon Albrecht

Am 25.04.2015 um 04:47 schrieb MarcM:

Having an acciaccatura or grace note as the first element of a score makes
the key, tempo  time print twice.
A ‘classic’ bug, see 
https://code.google.com/p/lilypond/issues/detail?id=34.
Insert \grace { s8 } (or whatever) in all the parallel expressions to 
work around.


Yours, Simon

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-25 Thread Simon Albrecht

Am 25.04.2015 um 13:52 schrieb Andrew Bernard:

I don’t think you can do that in chordmode.

Of course you can:
chordNames = \chordmode {
  \global
  \acciaccatura s8
  b1:m
}

It’s just the \global there adding the extra objects. Isn’t it?
It does if the chord names and voice are going out of sync due to the 
acciaccatura and the bug. Else, it doesn’t.


Yours, Simon
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-25 Thread Andrew Bernard
I don’t think you can do that in chordmode. It’s just the \global there adding 
the extra objects. Isn’t it?

Andrew



On 25 April 2015 at 21:04:21, Simon Albrecht (simon.albre...@mail.de) wrote:

Am 25.04.2015 um 04:47 schrieb MarcM:  
 Having an acciaccatura or grace note as the first element of a score makes  
 the key, tempo  time print twice.  
A ‘classic’ bug, see  
https://code.google.com/p/lilypond/issues/detail?id=34.  
Insert \grace { s8 } (or whatever) in all the parallel expressions to  
work around.  

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


odd behavior with acciaccatura in 1st position

2015-04-24 Thread MarcM
Having an acciaccatura or grace note as the first element of a score makes
the key, tempo  time print twice. 
Result is correct if acciaccatura is in 2nd position.

See small example here: http://lilybin.com/pbravw/1



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/odd-behavior-with-acciaccatura-in-1st-position-tp175301.html
Sent from the User mailing list archive at Nabble.com.

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-24 Thread Andrew Bernard
It’s this that is causing the problem:

\new ChordNames {\chordNames}

I never use ‘em, so I am no sure what the solution is. But as in medicine, as 
diagnosis is halfway there.

Andrew

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: odd behavior with acciaccatura in 1st position

2015-04-24 Thread Andrew Bernard
Solution:

remove \global from the chord expression:

chordNames = \chordmode {
  %\global
  b1:m
}

Andrew


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user