]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/printing-a-repeat-sign-at-the-beginning-of-a-piece.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / printing-a-repeat-sign-at-the-beginning-of-a-piece.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "repeats, tweaks-and-overrides"
11
12   texidoc = "
13 A @code{|:} bar line can be printed at the beginning of a piece.
14
15 "
16   doctitle = "Printing a repeat sign at the beginning of a piece"
17 } % begin verbatim
18
19 \relative c'' {
20   \bar ".|:"
21   \repeat volta 2 {
22     c1
23     d1
24     d4 e f g
25   }
26 }