Hmm, I think I maybe figured it out.  Not 100% sure if it's the most lean,
efficient code but this seems to work great for what I want:

A solo piano piece with no barlines and no time signature.

____

\version "2.17.10"

\header {
  % Remove default LilyPond tagline
  tagline = ##f
}

global = {
  \key c \major
  \numericTimeSignature
  \time 4/4
}

right = \relative c'' {
  \global
  \cadenzaOn
  c4 \times 4/5 {fis8[ g e' g,, a'] } bes16[ c c c c]
 
}

left = \relative c' {
  \global
  c,8[ g a bes,] f[ g] g f'es
  
}

\score {
  \new PianoStaff \with {
    instrumentName = "Piano"
  } <<
    \new Staff = "right" \right
    \new Staff = "left" { \clef bass \left }
  >>
  \layout { 
    %% insert these lines within the 
    %% layout block after your music: 
    \context { 
      \Staff 
      \remove Time_signature_engraver 
      
    } 

  } 
} 




-----
composer | sound designer
--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/No-time-signature-or-bar-lines-tp140688p140695.html
Sent from the User mailing list archive at Nabble.com.

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

Reply via email to