]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/toc.ly
Update LSR with new tags
[lilypond.git] / input / lsr / toc.ly
1 %% Do not edit this file; it is auto-generated from LSR!
2 %% Tags: paper-and-layout
3 \version "2.11.35"
4
5 \header {
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 }
10 % begin verbatim
11 #(set-default-paper-size "a6")
12
13 \book {
14   \markuplines \table-of-contents
15   \pageBreak
16
17   \tocItem \markup "The first score"
18   \score {
19     { 
20       c'1 \pageBreak
21       \mark "A" \tocItem \markup "Mark A"
22       d'
23     }
24   }
25   \pageBreak
26   \tocItem \markup "The second score"
27   \score {
28     { e' }
29     \header { piece = "Second score" }
30   }
31 }