]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/in-note.ly
6aeab18cd094cd91718f4628fdee2a89d19598c5
[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 \markup { \box \fill-line { "this is a test" } } \default
15       \repeat unfold 5 { a\< b c d\! }
16       \footnote #'(-1 . 1) #'NoteHead "foobar" \default
17       \repeat unfold 5 { a\< b c d\! }
18     }
19   }
20 }