lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Multiple instances of same articulation/bowing on one note


From: Valentin Petzel
Subject: Re: Multiple instances of same articulation/bowing on one note
Date: Wed, 01 Feb 2023 10:45:21 +0100

Hello Ahanu,

the cleanest way would be if this was fixed in code, but else instead of your 
<< ... >> constructs it suffices to do

\version "2.24.0"
\language "english"
{ 
  g8 \new Voice <>^\upbow g_\upbow g g
}

In fact we can use a little music function to get this done really 
beautifully:

sep =
#(define-music-function (m) (ly:music?)
   #{
     \new Voice <>-$m
   #})

\version "2.24.0"
\language "english"
{
  g8 \sep^\upbow g_\upbow g g
}

But this way of doing this has a little drawback: Positioning will not avoid 
collision with other notes. This can be solved by using an engraver to 
equalise side support elements between such grobs, as shown in the appended 
file.

Cheers,
Valentin

Am Mittwoch, 1. Februar 2023, 03:21:42 CET schrieb Ahanu Banerjee:
> I'm trying to put the same articulation both above and below one note. (My
> document has one set of bowings above the staff and an alternate set below
> the staff, and occasionally they both need the same marking.)
> 
> The workaround I currently have is creating a second voice, which is a bit
> of a pain. Are there better solutions? Code below.
> 
> \version "2.24.0"
> \language "english"
> { g8 g_\upbow ^\upbow g g % fails
>   g8 g_\upbow ^\downbow g g % works
>   % desired output:
>   << { g8 g_\upbow g g } \\ { s s ^\upbow } >> }
> 
> Thanks,
> -Ahanu

Attachment: multiple-articulations.ly
Description: Text Data

Attachment: signature.asc
Description: This is a digitally signed message part.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]