]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/identifiers.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / identifiers.ly
1
2 \header {
3   texidoc = "test identifiers."
4   }
5 \version "2.11.51"
6
7 num = #3
8 mus = { c'4 }
9 paperId = \paper { line-width = 5.0 \cm }
10 layoutId = \layout { ragged-right = ##t }
11 perfId = \midi {}
12 markupId = \markup { hoi }
13 stringId = "title"
14
15 % headers not allowed  as Id's
16
17 scoreId = \score {
18   \repeat unfold \num \mus
19   \layout { \layoutId }
20   \midi { \perfId }
21   }
22
23 bookId = \book {
24   \score { \scoreId }
25   \paper { \paperId }
26   }
27
28
29 \book { \bookId }
30
31