Expanding on Jakob's suggestion, try:
\version "2.24.2"
sharpTurnFlat =
\markup {
\center-column {
\lower #2 \tiny \flat
\lower #1 \musicglyph "scripts.turn"
\tiny \sharp
}
}
\relative c'' {
\time 2/4
g4-\tweak X-offset 1.5 ^\markup \sharpTurnFlat
e'8 c
\bar
Hi Vlad,
Perhaps not quite what you are looking for, but you can use columns of
markup like so:
\relative c'' { \time 2/4 g4^\markup { \center-column { \flat
\musicglyph "scripts.turn" \sharp } } e'8 c \bar "||" }
I'm sure there's a better way known to the real experts, so consider
this a
And you have taught me something in return! I didn't know about the
afterGraceFraction - which easily deals with my complaint about the spacing,
which I was about to bring up on the list - you have saved me the
embarrassment...
Thanks,
Paul
From: Volodymyr Prokopyuk
To: Paul Hodge
Hi,
Is it possible to define a turn with two accidentals as shown below?
[image: image.png]
The LilyPond documentation has a snippet here
https://lilypond.org/doc/v2.24/Documentation/notation/expressive-marks-attached-to-notes
for a turn with one accidental.
Thank you,
Vlad
Hi Paul,
Nice and clean solution! After some tweaks I've got what I wanted with the
following code
\afterGrace 15/16 d''1\( \trill { c16( d } | e2)\)
[image: image.png]
Thank you very much,
Vlad
On Thu, Oct 12, 2023 at 4:09 PM Paul Hodges wrote:
> The way I'd do it is:
>
> { \afterGrace d''
The way I'd do it is:
{ \afterGrace d''1\trill( { c''16_\( d'' } e''2)\) }
Paul
From: Volodymyr Prokopyuk
To: lilypond-user
Sent: 12/10/2023 14:58
Subject: How to end a trill with an acciaccatura in the same measure
Hi,
I'd like to achieve the below
With the follo
Hi,
I'd like to achieve the below
[image: image.png]
With the following code
<<
\new Voice = voiceOne \relative {
\voiceOne
d''1( \trill | \stemDown e2)
}
\new Voice = voiceTwo \relative {
\voiceTwo
s2 s4. \acciaccatura { c''16 d } | s2
}
>>
I was able
Am Sa., 7. Okt. 2023 um 19:23 Uhr schrieb Valentin Petzel :
>
> Hello Harm,
>
> The error you are seeing is caused by handling NoteCollisions. This has
> different behavior depending on the direction of the note column. The
> direction
> is set by the stem engraver, which is removed in this contex