]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/push-to-tag.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / push-to-tag.ly
1 \version "2.16.0"
2
3 \header{
4   texidoc="
5 Adding material to a tag in sequential and simultaneous expressions
6 using @code{\\pushToTag} and @code{\\appendToTag}.  One should get the
7 equivalent of
8 @example
9 @{ c' e' g' <<c' e' g' c''>> <<c'' g' e' c'>> g' e' c' @}
10 @end example
11 "
12 }
13
14 \layout { ragged-right = ##t }
15
16 test = { \tag #'here { \tag #'here <<c''>> }}
17
18 {
19   \pushToTag #'here c'
20   \pushToTag #'here e'
21   \pushToTag #'here g' \test
22   \appendToTag #'here c'
23   \appendToTag #'here e'
24   \appendToTag #'here g' \test
25 }
26