lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: No time signature?


From: Derek Schmidt
Subject: Re: No time signature?
Date: Mon, 17 Nov 2008 21:03:51 -0500

Thanks all for the help.

I found that Mark's solution works best, with one minor addition from
an example on the LSR:

 \layout {
    raggedright = ##t
    \context {
      \Staff
      whichBar = #""
      \remove "Time_signature_engraver"
    }
  }

I'm guessing that the whichBar = #"" command makes it work for every staff?

Thanks again,
A

On Mon, Nov 17, 2008 at 7:59 PM, Mark Polesky <address@hidden> wrote:
> A,
>
> I think it's better to remove the Time_signature_engraver
> from the Staff context, so it works in all staves without
> needing to retype the command for each staff. See below.
>
> Hope this helps.
> - Mark
>
>
> \version "2.11.63-1"
>
> \score {
>  <<
>  \new Staff \relative { g' a b c}
>  \new Staff \relative { g' a b c }
>  >>
>
>  \layout {
>
>    %% insert these lines within the
>    %% layout block after your music:
>    \context {
>      \Staff
>      \remove Time_signature_engraver
>    }
>
>  }
> }
>
>
>
>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]