]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/in-note.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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" } }
15       \repeat unfold 5 { a\< b c d\! }
16       <>\footnote #'(-1 . 1) #'NoteHead "foobar"
17       \repeat unfold 5 { a\< b c d\! }
18     }
19   }
20 }