]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/table-of-contents.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / table-of-contents.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.62"
4 \header {
5   lsrtags = "paper-and-layout"
6   texidoc = "A table of contents is included using
7 @w{@code{\\markuplines \\table-of-contents}}.  The TOC items are
8 added with the @code{\\tocItem} command."
9   doctitle = "Table of contents"
10 } % begin verbatim
11
12 #(set-default-paper-size "a6")
13
14 \book {
15   \markuplines \table-of-contents
16   \pageBreak
17   \tocItem \markup { The first score }
18   \score {
19     {
20       c'1 \pageBreak
21       \mark "A" \tocItem \markup { Mark A }
22       d'1
23     }
24   }
25   \pageBreak
26   \tocItem \markup { The second score }
27   \score {
28     { e'1 }
29     \header { piece = "Second score" }
30   }
31 }