Jump to content

Double bar line as system start: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m New category
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
A double bar line as system start may be printed as demonstrated here.
A double bar line as system start may be printed as demonstrated here.


<lilypond version="2.24.0">
<lilypond version="2.24">
\layout {
\layout {
   \context {
   \context {
Line 22: Line 22:


[[Category:Specific notation]]
[[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 }
>>