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.
7 lsrtags
= "repeats, text"
10 Though volte are best specified using @code{\\repeat volta}, the
11 context property @code{repeatCommands} must be used in cases where the
12 volta text needs more advanced formatting with @code{\\markup}.
14 Since @code{repeatCommands} takes a list, the simplest method of
15 including markup is to use an identifier for the text and embed it in
16 the command list using the Scheme syntax @code{#(list (list 'volta
17 textIdentifier))}. Start- and end-repeat commands can be added as
18 separate list elements:
21 doctitle
= "Volta text markup using repeatCommands"
24 voltaA
dLib
= \markup { 1. 2. 3... \text \italic { ad lib
. } }
28 \set Score
.repeatCommands
= #(list
(list
'volta voltaA
dLib
) 'start-repeat
)
30 \set Score
.repeatCommands
= #'((volta
#f) (volta
"4.") end-repeat
)
32 \set Score
.repeatCommands
= #'((volta
#f))