Jump to content

Specifying instrument changes as markups

From LilyPond wiki

This is just a small useful macro when you need to specify multiple instrument changes on a same staff. Just write \inst "Name before the note the markup should be attached to.

\version "2.24.0"

%% http://lsr.di.unimi.it/LSR/Item?id=349

%LSR modified by P.P.Schneider on Feb.2014

inst =
#(define-music-function (string) (string?)
  #{ <>^\markup \bold \box #string #})

\relative c' { c \inst "Horn" d e f }