Jump to content

Double bar line as system start: Difference between revisions

From LilyPond wiki
No edit summary
m New category
 
Line 21: Line 21:
</lilypond>
</lilypond>


[[Category:Specific notation]][[Category:Snippet]]
[[Category:Specific notation]]
[[Category:Snippet]]

Latest revision as of 23:19, 21 November 2025

A double bar line as system start may be printed as demonstrated here.

\version "2.24"

\layout {
  \context {
  	\Score
  	\override SystemStartBar.thickness = 1.8
  }
  \context {
    \StaffGroup
    \override Clef.X-extent = #'(-0.4 . 0)
    \override SystemStartBar.padding = -0.65
    systemStartDelimiter = #'SystemStartBar
  }
}

\new StaffGroup <<
  { c'1 }
  { c'1 }
>>