]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/tick-bar-lines.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / tick-bar-lines.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.12.2"
5
6 \header {
7   lsrtags = "staff-notation"
8
9   texidoc = "
10 'Tick' bar lines are often used in music where the bar line is used
11 only for coordination and is not meant to imply any rhythmic stress.
12
13 "
14   doctitle = "Tick bar lines"
15 } % begin verbatim
16
17 \relative c' {
18   \set Score.defaultBarType = #"'"
19   c4 d e f
20   g4 f e d
21   c4 d e f
22   g4 f e d
23   \bar "|."
24 }