]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/table-of-contents.ly
Merge branch 'master' into lilypond/translation
[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.12.0"
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
13 #(set-default-paper-size "a6")
14
15 \book {
16   \markuplines \table-of-contents
17   \pageBreak
18   \tocItem \markup { The first score }
19   \score {
20     {
21       c'1 \pageBreak
22       \mark "A" \tocItem \markup { Mark A }
23       d'1
24     }
25   }
26   \pageBreak
27   \tocItem \markup { The second score }
28   \score {
29     { e'1 }
30     \header { piece = "Second score" }
31   }
32 }