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