]> git.donarmstrong.com Git - lilypond.git/blob - input/test/title.ly
* input/test/[t-v]*.ly: finish rewriting texidocs.
[lilypond.git] / input / test / title.ly
1 \version "2.1.26"
2 % MERGE with lilypond-
3 \header {
4   filename = "title.ly"
5   dedication = "dedication"
6   title = "Title"
7   subtitle = "Subtitle"
8   subsubtitle = "Subsubtitle"
9   composer = "Composer (xxxx-yyyy)"
10   instrument = "Instrument"
11   arranger = "Arranger"
12   poet = "Poet"
13   % ugr: warning: Identifier name is a keyword: `translator'
14   % translator = "Translator"
15   texttranslator = "Translator"
16   copyright = "public domain"
17   enteredby = "jcn"
18   source = "urtext"
19
20   texidoc ="This example tests titling. By processing with @code{lilypond} 
21   (not @code{lilypond-book}), you will see all the titles." 
22 }
23
24 \score {
25   \context Staff \notes \relative c' {
26      \repeat unfold 10 {
27        c d e f f e d c \break
28        c d e f f e d c
29      }
30   }
31   \header {
32     opus = "Opus 0"
33     piece = "Piece I"
34   }
35 }
36
37 \score {
38   \notes \relative c' {
39      f e d c c d e f \break
40      f e d c c d e f
41   }
42   \header { 
43     opus = "Opus 1"
44     piece = "Piece II" 
45   }
46 }
47
48