On 2012-08-18 01:47, Štěpán Němec wrote:

% here, the first staff gets time signature, but shouldn't

\version "2.14.2"

\new PianoStaff <<
   \new Staff {
     \override Staff.TimeSignature #'stencil = ##f
     c
   }
   \new Staff {
     \override Staff.TimeSignature #'stencil = ##f
     \acciaccatura c c
   }


Same problem as we have in all cases when one voice starts with grace notes... You need to add spacer grace notes too all other staves, too:

\version "2.14.2"

\new PianoStaff <<
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    \acciaccatura s c
  }
  \new Staff {
    \override Staff.TimeSignature #'stencil = ##f
    \acciaccatura c c
  }
>>

Cheers,
Reinhold

--
------------------------------------------------------------------
Reinhold Kainhofer, reinh...@kainhofer.com, http://www.kainhofer.com
 * Financial & Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * Edition Kainhofer, Music Publisher, http://www.edition-kainhofer.com

_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to