lilypond-user
[Top][All Lists]
Advanced

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

Re: Key Signature only on first staff


From: jmechmech
Subject: Re: Key Signature only on first staff
Date: Sun, 26 Jul 2015 02:36:07 -0700 (MST)

like that? :


\version "2.18.2"

global = {
   \time 4/4
   \tempo 4=90
   \key b \major
   s1  
}

melody = \relative c' {
   \repeat unfold 5 { cis dis e fis }
   \key g \major 
   \repeat unfold 5 { cis dis e fis }
}

wordsOne = \lyricmode{
   \set stanza = "1"
   c d e f g
}
wordsTwo = \lyricmode{
   \set stanza = "2"
   c d e f g
}

\score {
   <<
     \new Staff <<
       \global
       \melody
     >>
     \addlyrics { \wordsOne }
     \addlyrics { \wordsTwo }
   >>
   
    \layout {    
    \context {
      \Score   
      \override SystemStartBar.collapse-height = #1
      \remove "Bar_number_engraver"
    }    
    \context {
      \Staff
      \override Clef.break-visibility = #all-invisible
      \override KeySignature.break-visibility = #all-invisible
    }    
  }
} 




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Key-Signature-only-on-first-staff-tp178898p179086.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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