Table of contents: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 1: | Line 1: | ||
A table of contents is included using <code>\markuplist \table-of-contents</code>. The TOC items are added with the <code>\tocItem</code> command. | A table of contents is included using <code>\markuplist \table-of-contents</code>. The TOC items are added with the <code>\tocItem</code> command. | ||
<lilypond version="2.24 | <lilypond version="2.24"> | ||
#(set-default-paper-size "a6") | #(set-default-paper-size "a6") | ||
Revision as of 18:53, 16 November 2025
A table of contents is included using \markuplist \table-of-contents. The TOC items are added with the \tocItem command.
\version "2.24"
#(set-default-paper-size "a6")
\book {
\markuplist \table-of-contents
\pageBreak
\tocItem \markup { The first score }
\score {
{
c'1 \pageBreak
\mark \default \tocItem \markup { Mark A }
d'1
}
}
\pageBreak
\tocItem \markup { The second score }
\score {
{ e'1 }
\header { piece = "Second score" }
}
}