lilypond-user
[Top][All Lists]
Advanced

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

Remove system separator


From: Pierre Perol-Schneider
Subject: Remove system separator
Date: Mon, 25 Jan 2016 16:31:31 +0100

Hi All,

I need to typeset an orchestral piece showing system separators together with solo scores without the system separator.
Any idea ?

%%%%%% Snippet: %%%%%%
\version "2.19.35"

#(set-default-paper-size "a6landscape")

instruOne = \new Staff {
  \set Staff.instrumentName = "Inst. 1"
  \repeat unfold 20 c''1
  \bar "|."
}

instruTwo = \new Staff {
  \set Staff.instrumentName = "Inst. 2"
  \repeat unfold 20 c'1
  \bar "|."
}

\book {
  \paper {
    system-separator-markup = \slashSeparator
  }
  \header {
    title = "Some Music"
  }
  \bookpart {
    \new StaffGroup << \instruOne \instruTwo >>
    \header { piece = "CONDUCTOR" }
  }
  \bookpart {
    \score {
      \instruOne
      \layout { system-count = 4 }
    }
    \header { piece = "INSTRUMENT ONE" }
  }
  \bookpart {
    \score {
      \instruTwo
      \layout { system-count = 4 }
    }
    \header { piece = "INSTRUMENT TWO" }
  }
}

%%%%%%% END %%%%%%%%%

Cheers,
Pierre

reply via email to

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