Jump to content

Changing the size of note heads

From LilyPond wiki

It is possible to change the fontsize of note heads.

\version "2.24.0"

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


\relative c'' {
  \huge
  c4.-> d8---3
  \large
  c4.-> d8---3
  \normalsize
  c4.-> d8---3
  \small
  c4.-> d8---3
  \tiny
  c4.-> d8---3
  \normalsize
  c2
}