Jump to content

Setting system separators

From LilyPond wiki
(Redirected from LSR 687)

System separators can be inserted between systems. Any markup can be used, but \slashSeparator has been provided as a sensible default.

\version "2.24.0"

\paper {
  system-separator-markup = \slashSeparator
  line-width = 120
  tagline = ##f
}

notes = \relative c' {
  c1 | c \break
  c1 | c \break
  c1 | c
}

\book {
  \score {
    \new GrandStaff <<
      \new Staff \notes 
      \new Staff \notes 
    >>
  }
}