]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/table-of-contents.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4 \header {
5   lsrtags = "paper-and-layout"
6   texidoc = "A table of contents is included using
7 @code{\\markuplines \\table-of-contents}.  The TOC items are added with
8 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 }