]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/footnote-auto-numbering.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / input / regression / footnote-auto-numbering.ly
1 \version "2.15.7"
2 \header {
3   texidoc = "This is an example of automatic footnote numbering
4 where the number is not reset on each page.  It uses the default
5 numbering function, which assigns numbers starting at 1 to successive
6 footnotes.
7 "
8 }
9
10 \paper {
11   reset-footnotes-on-new-page = ##f
12 }
13
14 #(set-default-paper-size "a6")
15 \book {
16
17 \markup {
18   a \auto-footnote b c
19   \auto-footnote d e
20   \auto-footnote f g
21 }
22
23 \markup { h i }
24
25 \relative c' {
26 \autoFootnoteGrob #'NoteHead #'(1 . -1) \markup { j }
27 a b c d }
28
29 \pageBreak
30
31 \markup { k \auto-footnote l m }
32
33 \relative c' { a1 }
34
35 \relative c' {
36   d4 e
37   < f  a-\autoFootnote #'(1 . -1) \markup { n } c >
38   \autoFootnoteGrob #'Beam #'(1 . 1) \markup { o }
39   \autoFootnoteGrob #'Hairpin #'(1 . 1) \markup { p }
40   a8\< [ b c d ] a4 b c |
41   d a b c |
42   d a b c |
43   d a b c\f |
44 }}