]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/identifier-quoted.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / identifier-quoted.ly
1 \header
2 {
3
4 texidoc = "Music identifiers containing arbitrary characters may be
5 initialized using
6 @example
7 \"violin1\" = @{ c''4 c'' c'' c'' @}
8 @end example
9 and used as:
10 @example
11 \\new Voice @{ \\\"violin1\" @}
12 @end example
13 "
14
15 }
16
17 \version "2.17.28"
18
19 "violin1" = { c''4 c'' c'' c'' }
20 "violin2" = { a'4 a' a' a' }
21
22 \layout { ragged-right = ##t }
23
24 {
25   << \"violin1" \\ \"violin2" >>
26 }