Re: Should \partial accept music instead of duration?

2022-03-24 Thread Carl Sorensen
On Thu, Mar 24, 2022 at 3:18 PM Valentin Petzel wrote: > Hello Carl, > > I don’t think recreating \partial is the best thing to do. After all we > can > simply do > > pickupNotes = > #(define-music-function (mus) (ly:music?) >(let* ((mom (ly:music-length mus)) > (dur

Re: Should \partial accept music instead of duration?

2022-03-24 Thread Valentin Petzel
Hello Carl, I don’t think recreating \partial is the best thing to do. After all we can simply do pickupNotes = #(define-music-function (mus) (ly:music?) (let* ((mom (ly:music-length mus)) (dur (make-duration-of-length mom))) #{ \partial #dur #mus #}))

Re: Should \partial accept music instead of duration?

2022-03-24 Thread Carl Sorensen
On Thu, Mar 24, 2022 at 12:48 PM Valentin Petzel wrote: > Another idea: We could have a command like partialDuring or partialWith. > Here's what I wrote, renaming Aaron's function: pickupNotes = #(define-music-function (mus) (ly:music?) (_i "Make a partial measure.") (let* ((mom

Re: Should \partial accept music instead of duration?

2022-03-24 Thread Valentin Petzel
Another idea: We could have a command like partialDuring or partialWith. Cheers, Valentin Am Montag, 21. März 2022, 02:53:14 CET schrieb Flaming Hakama by Elaine: > > -- Forwarded message -- > > From: "Tim's Bitstream" > > To: Werner LEMBERG > > Cc: lilyp...@hillvisions.com,

Re: Grace note position and time signature changes

2022-03-24 Thread Jean Abou Samra
Le 24/03/2022 à 13:13, Leo Correia de Verdier a écrit : This is our beloved issue 34 again: https://sourceforge.net/p/testlilyissues/issues/34/ Note that the issue tracker has moved. The new URL is https://gitlab.com/lilypond/lilypond/-/issues/34 Jean

Re: Grace note position and time signature changes

2022-03-24 Thread David Santamauro
> On Mar 24, 2022, at 8:13 AM, Leo Correia de Verdier > wrote: > > \time 4/4 s1 s1 s1 > \time 2/4 \grace s16*3 s2 > \time 4/4 s1 > \time 2/4\grace s16*3 s2 Works as advertised, thanks

Re: Grace note position and time signature changes

2022-03-24 Thread Leo Correia de Verdier
Hi David! This is our beloved issue 34 again: https://sourceforge.net/p/testlilyissues/issues/34/ You need to place grace spacers in relevant sequential variables matching the gracenotes to get them to the right place, as in this fixed code. %%% \version "2.22.2"

Grace note position and time signature changes

2022-03-24 Thread David Santamauro
Hi, The following snippet produces some strange results: \version "2.22.2" \include "english.ly" tt = { \time 4/4 s1 s1 s1 \time 2/4 s2 \time 4/4 s1 \time 2/4 s2 } \score { << \new Staff { \relative c' { << \tt { R1 R1 a1 ~ a4 r4 R1 R2 } >> } } \new

Re: tremolos

2022-03-24 Thread Vaughan McAlley
On Thu, 24 Mar 2022 at 11:05, Molly Preston wrote: > Is there any way of changing the angle of tremolo markings? > > \version "2.22.1" > > \repeat tremolo 16 { 32 e'' 32 } > > I am wondering if there is a way to get the tremolo marking to be angled > instead of straight? > > -Molly > It