lilypond-user
[Top][All Lists]
Advanced

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

Re: No time signature or bar lines


From: Paul Morris
Subject: Re: No time signature or bar lines
Date: Sat, 9 Feb 2013 21:35:56 -0500

On Feb 9, 2013, at 6:53 PM, address@hidden wrote:

> (1) the example below is pretty much what I want expect
> that there is space where the time signature would normally go 
> (I erase the time signature with
> "\override TimeSignature #'transparent = ##t" but the space
> is still there). 
> 
> How can I get rid of this space?

I don't know why this does not work:

%%%%%%%%%%%%%%
 \version "2.16.0"

\score { % score

 \new Staff \with { 
   \override TimeSignature #'break-visibility = #'#(#f #f #f) }  % <--- ADDED
 {
 \time 4/4
 \key c \major
 \clef "treble"
   \cadenzaOn
    a1    b1
    c'1   d'1   e'1   f'1   g'1   a'1   b'1 
    c''1  d''1  e''1  f''1  g''1  a''1  b''1
   \cadenzaOff
 }

 \layout {

   \context {
      \Score
     % 
   }
 }

} % score
%%%%%%%%%%%%%%

...as described here:
http://lilypond.org/doc/v2.16/Documentation/notation/visibility-of-objects#using-break_002dvisibility

But the following works.  

HTH,
-Paul

%%%%%%%%%%%%%%
 \version "2.16.0"

\score { % score

 \new Staff \with { \remove "Time_signature_engraver" }  % <--- ADDED
 {
 \time 4/4
 \key c \major
 \clef "treble"
   \cadenzaOn
    a1    b1
    c'1   d'1   e'1   f'1   g'1   a'1   b'1
    c''1  d''1  e''1  f''1  g''1  a''1  b''1
   \cadenzaOff
 }

 \layout {

   \context {
      \Score
      % \override TimeSignature #'transparent = ##t  
   }
 }

} % score





reply via email to

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