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: SoundsFromSound
Subject: Re: No time signature or bar lines
Date: Sat, 9 Feb 2013 21:22:33 -0800 (PST)

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.



reply via email to

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