1\version "2.19.21"
2\header {
3  texidoc = "With grobs that have break visibility, footnotes will
4automatically take the break visibility of the grob being footnoted.
5This behavior can be overridden.
6"
7}
8
9#(set-default-paper-size "a6")
10
11\book {
12
13\new Staff
14{
15  \relative {
16    c'1
17    \footnote "foo" #'(0 . 2) "bar" Staff.TimeSignature
18    \time 3/4
19    \break \pageBreak
20    c2.
21    \once \override Score.FootnoteItem.break-visibility = ##(#f #f #t)
22    \footnote "foo" #'(0 . 2) "bar" Staff.TimeSignature
23    \time 4/4
24    \break \pageBreak
25    c1 \bar "|."
26}}}
27