Leo, Thank you for your reply and suggestion. Please bear with my ignorance. My understanding is that the construct <<{ } { }>> creates two voices. I merely want to use the documentation to achieve a delayed turn.
Mark -----Original Message----- From: Leo Correia de Verdier [mailto:leo.correia.de.verd...@gmail.com] Sent: Thursday, November 18, 2021 9:05 AM To: Mark Stephen Mrotek <carsonm...@ca.rr.com> Cc: lilypond-user <lilypond-user@gnu.org> Subject: Re: Delayed Turn The beam appears since you have both the hidden note and the others in the same voice. Adding the double backslashes is a shorthand for creating a new voice, but then I needed to override some directions, since this also sets the first voice upwards and the second downwards. \version "2.22.1" \relative c' { \time 2/4 \key aes \major ees'4 << {\oneVoice f,8. [(aes32 c)] } \\ { s8 \once \set suggestAccidentals = ##t \once \override AccidentalSuggestion.direction = #UP \once \override AccidentalSuggestion.font-size = -3 \once \override AccidentalSuggestion.script-priority = -1 \once \hideNotes b16^\turn \noBeam s } >> } If you actually want the hidden note in the same voice you can add \once \override Stem.beaming = #'((0) . (0)) for the hidden note, and \once \override Stem.beaming = #'((0) . (0 1 2)) For the spacer after it, to hack away the stems, but it seems rather inelegant to me. > 18 nov. 2021 kl. 05:02 skrev Mark Stephen Mrotek <carsonm...@ca.rr.com>: > > Hello, > > To get instructions I went to > https://lilypond.org/doc/v2.22/Documentation/notation/expressive-marks > -attached-to-notes And copied the code only modifying pitch and > duration. > > \version "2.22.1" > > \relative c' { > \time 2/4 > \key aes \major > > ees'4 > << > { f,8. [(aes32 c)] } > { > s8 > \once \set suggestAccidentals = ##t > \once \override AccidentalSuggestion.outside-staff-priority = ##f > \once \override AccidentalSuggestion.avoid-slur = #'inside > \once \override AccidentalSuggestion.font-size = -3 > \once \override AccidentalSuggestion.script-priority = -1 > \single \hideNotes > b16-\turn \noBeam > s > } > >> > > An extended beam appears and the turn collides with the expected beam. > > Any assistance greatly appreciated. > > Thank you for your kind attention > > Mark