When I compile the code below, I get a staff over the entire width of my page
(see example 1), but the notes f and a, including the lyrics 'OK' and 'thanks'
are in the middle of the staff.
How can I make sure that the lyrics and notes on the left are justified? (see
example 2)
\version "2.22.1"
\layout {
indent = #0
line-width = #180
#(layout-set-staff-size 24)
}
{
\key f \major \time 2/4
c'4 f' \bar "" \break
c' a' \bar "" \break
}
\addlyrics {
Yes OK,
No thanks,
}
Example 1.Wrong outlined
Example 2. This is what I want.