]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/table-of-contents.ly
Merge commit 'ce4b499'
[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.38"
4 \layout { ragged-right= ##t }
5 \header {
6   doctitle = "Table of contents"
7   lsrtags = "paper-and-layout"
8   texidoc = "A table of contents is included using
9 @code{\\markuplines \\table-of-contents}. The TOC items are added with
10 the @code{\\tocItem} command."
11 }
12 % begin verbatim
13 #(set-default-paper-size "a6")
14
15 \book {
16   \markuplines \table-of-contents
17   \pageBreak
18
19   \tocItem \markup "The first score"
20   \score {
21     { 
22       c'1 \pageBreak
23       \mark "A" \tocItem \markup "Mark A"
24       d'
25     }
26   }
27   \pageBreak
28   \tocItem \markup "The second score"
29   \score {
30     { e' }
31     \header { piece = "Second score" }
32   }
33 }