Jump to content

Mensurstriche layout (bar lines between the staves): Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
''Mensurstriche'', bar lines between but not through staves, can be printed by setting <code>measureBarType</code> to <code>&quot;-span|&quot;</code> and using a grouping context that allows span bars, such as <code>StaffGroup</code>.
''Mensurstriche'', bar lines between but not through staves, can be printed by setting <code>measureBarType</code> to <code>&quot;-span|&quot;</code> and using a grouping context that allows span bars, such as <code>StaffGroup</code>.


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

Revision as of 18:53, 16 November 2025

Mensurstriche, bar lines between but not through staves, can be printed by setting measureBarType to "-span|" and using a grouping context that allows span bars, such as StaffGroup.

\version "2.24"

\layout {
  \context {
    \Staff
    measureBarType = "-span|"
  }
}

music = \fixed c'' {
  c1
  d2 \section e2
  f1 \fine
}

\new StaffGroup <<
  \new Staff \music
  \new Staff \music
>>