]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/in-note.ly
c8e4a03d684dfc2780c371b9d05c5bfa9da58440
[lilypond.git] / input / regression / in-note.ly
1 \version "2.15.39"
2
3 \header {
4   texidoc = "LilyPond does in-notes.
5 "
6 }
7
8 #(set-default-paper-size "a6")
9 \book {
10   \relative c' {
11     \repeat unfold 5 {
12       \once \override FootnoteItem #'footnote = ##f
13       \footnote
14          "" #'(0 . 0) #'NoteHead
15          \markup { \box \fill-line { "this is a test" } } \default
16       \repeat unfold 5 { a\< b c d\! }
17       \footnote #'(-1 . 1) #'NoteHead "foobar" \default
18       \repeat unfold 5 { a\< b c d\! }
19     }
20   }
21 }