]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/volta-markup-text.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / volta-markup-text.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Volte using @code{repeatCommands} can have markup
5 text."
6 }
7
8 voltaAdLib = \markup { 1. 2. 3... \text \italic { ad lib. } }
9
10 \relative c'' {
11   c1
12   \set Score.repeatCommands = #(list (list 'volta voltaAdLib) 'start-repeat)
13   c4 b d e
14   \set Score.repeatCommands = #'((volta #f) (volta "4.") end-repeat)
15   f1
16   \set Score.repeatCommands = #'((volta #f))
17 }