Jump to content

Tick bar lines: 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:
'Tick' bar lines are often used in music where the bar line is used only for coordination and is not meant to imply any rhythmic stress.
'Tick' bar lines are often used in music where the bar line is used only for coordination and is not meant to imply any rhythmic stress.


<lilypond version="2.24.0">
<lilypond version="2.24">
\relative c' {
\relative c' {
   \set Score.measureBarType = #"'"
   \set Score.measureBarType = #"'"

Revision as of 18:55, 16 November 2025

'Tick' bar lines are often used in music where the bar line is used only for coordination and is not meant to imply any rhythmic stress.

\version "2.24"

\relative c' {
  \set Score.measureBarType = #"'"
  c4 d e f
  g4 f e d
  c4 d e f
  g4 f e d
  \bar "|."
}