I need the note heads to be printed in notes with octave.
The below code in lilypond prints C, D, E, F, G, A, B in notehead:
\version "2.20.1"
{
\easyHeadsOn
\clef treble
<c d e f g a b>
}
How can I have C3, D3, E3, F3, G3, A3, B3 in notehead?
How to continuously print C2, D2, E2, F2, G2, A2, B2,C3, D3, E3, F3, G3, A3, B3,C4, D4, E4, F4, G4, A4, B4,C5, D5, E5, F5, G5, A5, B5,C6, D6, E6, F6, G6, A6, B6 with lilypond?
I found an answer below:
\relative c {
\easyHeadsOn
c d e f g a b c d e f g a b c d e f g a b c d e f g a b
}
\relative c,, {
\easyHeadsOn
\clef bass
c d e f g a b c d e f g a b c d e f g a b c d e f g a b
}

