]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/identifier-alists.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / identifier-alists.ly
1 \version "2.19.39"
2
3 \header {
4   texidoc = "Music variables may be structured into alists
5 indexed by numbers or symbols."
6 }
7
8 \layout { ragged-right = ##t }
9
10 violin.1 = { e''-\markup \typewriter "\\violin.1" }
11 violin.2 = { c'-\markup \typewriter "\\violin.2" }
12 viola.I = { e-\markup \typewriter "\\viola.I" }
13 viola.II = { c-\markup \typewriter "\\viola.II" }
14
15 \score {
16   <<
17     \new Staff << \violin.1 \\ \violin.2 >>
18     \new Staff \with { \clef "alto" } << \viola.I \\ \viola.II >>
19   >>
20 }