]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/tick-bar-lines.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / tick-bar-lines.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "staff-notation"
11
12   texidoc = "
13 'Tick' bar lines are often used in music where the bar line is used
14 only for coordination and is not meant to imply any rhythmic stress.
15
16 "
17   doctitle = "Tick bar lines"
18 } % begin verbatim
19
20 \relative c' {
21   \set Score.defaultBarType = #"'"
22   c4 d e f
23   g4 f e d
24   c4 d e f
25   g4 f e d
26   \bar "|."
27 }