Hello list,
In the attached file, I've removed the Bar engraver, since I don't
want bars. Is this the wrong way? I ask because Lily forgets to
typeset the clef and the key at the beginning of the next line.
--
michael krause - http://www.tu-harburg.de/~semk2104/
\include "deutsch.ly"
\score {
\context Staff = i \notes \relative c'' {
\time 4/4; \key f \major;
c2 a4 b c c d c c2 \breathe
c4 a b2 g4 g f2 \breathe
c'4 c f, b a g a2 \breathe
c4 c d d c2 \breathe
c4 c b a g a b a g a2 \breathe
c4 a f b a g f g f f2^\fermata
}
\paper{
\translator {
\StaffContext
\remove "Bar_engraver";
\remove "Time_signature_engraver";
}
}
}