Hi, Thank you very much for your advice!
While the below *code* \after 4. ^\markup \center-column { \raise #-1 \teeny \sharp \musicglyph "scripts.turn" \lower #-1 \teeny \natural } g=''2 a8 g f e | gives the *desired result* [image: image.png] I'd like to create a *music function* for convenience to be used like \after 4. { \udTurn \sharp \natural } g=''2 a8 g f e | How do I create a music function for this purpose? I've tried the following with the *error* of unknown command \sharp udTurn = #(define-music-function (up down) (markup? markup?) #{ \markup \center-column { \raise #-1 \teeny #up \musicglyph "scripts.turn" \lower #-1 \teeny #down } #}) Thank you, Vlad On Fri, Oct 13, 2023 at 10:48 AM Hans Åberg <haber...@telia.com> wrote: > > > On Oct 12, 2023, at 23:10, Volodymyr Prokopyuk < > volodymyrprokop...@gmail.com> wrote: > > > > Is it possible to define a turn with two accidentals as shown below? > > I think you must design them, say adding another column item to what I use: > > mordentsharp = ^\markup \left-align \center-column { > \musicglyph #"scripts.mordent" \raise #1.0 \tiny\sharp > } > > turnlowersharp = ^\markup { \lower #8.0 \left-align \center-column { > \musicglyph #"scripts.turn" \raise #1.0 \tiny\sharp > } > } > > >