Re: Ties across voices; tried two methods

2024-01-24 Thread Charlie Ma
I just joined this group and have learned so much already. First time answering. Hope this is right (works for me anyway.) Butter Cream: for the first tie put the first b-flat in the same "voice." for the 2nd tie use \repeatTie. \repeat volta 2 { 4 8 ~ r8 << { bes4~ } \\ { s4 } >> |

Re: Incipit with default noteheads possible?

2024-01-24 Thread Werner LEMBERG
>> This works for the note heads, but if there happen to be >> accidentals around (in my project this is the case), they remain >> mensural style. Is there another override for this, too? > > How about this? Nice! David, what do you think about converting this code into a proper MR?

RE: Ties across voices; tried two methods

2024-01-24 Thread Mark Stephen Mrotek
Welcome! From: Butter Cream Sent: Wednesday, January 24, 2024 4:29 PM To: Leo Correia de Verdier ; Mark Stephen Mrotek Cc: lilypond-user@gnu.org Subject: Re: Ties across voices; tried two methods Thank you! I will implement your suggestions. Sent via the Samsung Galaxy S20 FE 5G,

Re: Incipit with default noteheads possible?

2024-01-24 Thread David Kastrup
Hajo Baess writes: > This works for the note heads, but if there happen to be accidentals > around (in my project this is the case), they remain mensural style. Is > there another override for this, too? > > Am Mittwoch, dem 24.01.2024 um 16:14 +0200 schrieb YTG 1234: >> > I have tried an

Re: Ties across voices; tried two methods

2024-01-24 Thread Butter Cream
Thank you! I will implement your suggestions. Sent via the Samsung Galaxy S20 FE 5G, an AT 5G smartphone Get Outlook for Android From: Leo Correia de Verdier Sent: Wednesday, January 24, 2024 7:21:29 PM To: Mark Stephen Mrotek Cc: Butter

Re: Ties across voices; tried two methods

2024-01-24 Thread Leo Correia de Verdier
Also: your tie needs to end in the same voice it started. \new Voice and the <<\\>> construct both create other voices. If you remove \new Voice = “melody” from your first attempt it will work, as the last note of the tie is then in the same voice as the first. > 25 jan. 2024 kl. 00:37 skrev

Re: Incipit with default noteheads possible?

2024-01-24 Thread Hajo Baess
That 'manual' solution is absolutely good enough for my purpose. Furthermore it is easy to understand and to modify if necessary. I'll adopt it for my project. At any rate: thank you all for your very valuable advice and hints. I already suspected as well that \incipit is hardcoded to mensural

RE: Ties across voices; tried two methods

2024-01-24 Thread Mark Stephen Mrotek
Butter, Use \repeatTie See https://lilypond.org/doc/v2.22/Documentation/notation/long-repeats#normal-re peats Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org On Behalf Of Butter Cream Sent: Wednesday, January 24, 2024 1:29 PM To: lilypond-user@gnu.org Subject: Ties

Re: Incipit with default noteheads possible?

2024-01-24 Thread Hajo Baess
This works for the note heads, but if there happen to be accidentals around (in my project this is the case), they remain mensural style. Is there another override for this, too? Am Mittwoch, dem 24.01.2024 um 16:14 +0200 schrieb YTG 1234: > > I have tried an override ( \override > >

Re: Incipit with default noteheads possible?

2024-01-24 Thread Mats Bengtsson
I have to try it. So far, I've used the more manual solution available in https://lsr.di.unimi.it/LSR/Item?id=451     /Mats On 2024-01-24 18:39, YTG 1234 wrote: betterIncipit = #(define-music-function (incipit-music) (ly:music?)

Ties across voices; tried two methods

2024-01-24 Thread Butter Cream
Hi ponders, I have a piece of music with alternative ending. The last measure prior to the alternative is a single voice has a tied note to both endings. I'v e tried two methods but both methods produce similar error: {with no tie} Any help would be appreciated. *.ly:100:42: warning:

Re: Incipit with default noteheads possible?

2024-01-24 Thread YTG 1234
Here's my attempt at this (I don't know how to check for staff-like contexts, so I just put them all in a list). It's just \incipit but with an additional condition and the context mods moved to \layout. betterIncipit = #(define-music-function (incipit-music) (ly:music?)   (_i "Output

Re: Incipit with default noteheads possible?

2024-01-24 Thread David Kastrup
YTG 1234 writes: >> I have tried an override ( \override >> Staff.NoteHead.style = #'default ) > > Note heads are drawn in Voice, so you can just omit the context > name. \override NoteHead.style = #'default > > The more fundamental issue here, though, is that \incipit is hardcoded > to create a

Re: Incipit with default noteheads possible?

2024-01-24 Thread YTG 1234
I have tried an override ( \override Staff.NoteHead.style = #'default ) Note heads are drawn in Voice, so you can just omit the context name. \override NoteHead.style = #'default The more fundamental issue here, though, is that \incipit is hardcoded to create a MensuralStaff context. Does