1\version "2.16.0"
2
3\header{
4  texidoc="
5Adding material to a tag in sequential and simultaneous expressions
6using @code{\\pushToTag} and @code{\\appendToTag}.  One should get the
7equivalent 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
16test = { \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
27