]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/table-of-contents.ly
b0238b2c7070cb92a6d9c7a82dae73c1fd85e89d
[lilypond.git] / Documentation / snippets / table-of-contents.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.15.40"
8
9 \header {
10   lsrtags = "paper-and-layout"
11
12 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
13   texidocfr = "
14 L'instruction @code{\\markuplist \\table-of-contents} permet d'inclure
15 une table des matières.  Ses éléments sont ajoutés à l'aide de la
16 commande @code{\\tocItem}.
17
18 "
19   doctitlefr = "Table des matières"
20
21   texidoc = "
22 A table of contents is included using @code{\\markuplist
23 \\table-of-contents}.  The TOC items are added with the
24 @code{\\tocItem} command.
25
26 "
27   doctitle = "Table of contents"
28 } % begin verbatim
29
30
31 #(set-default-paper-size "a6")
32
33 \book {
34   \markuplist \table-of-contents
35   \pageBreak
36   \tocItem \markup { The first score }
37   \score {
38     {
39       c'1 \pageBreak
40       \mark "A" \tocItem \markup { Mark A }
41       d'1
42     }
43   }
44   \pageBreak
45   \tocItem \markup { The second score }
46   \score {
47     { e'1 }
48     \header { piece = "Second score" }
49   }
50 }