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 (make-duration-
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
#}))
Cheer
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 (ly:music
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, dan
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
> 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
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"
\includ
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 St