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