]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/demonstrating-all-headers.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / demonstrating-all-headers.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "paper-and-layout, text, titles"
11
12   texidoc = "
13 A demonstration of all headers.
14
15 "
16   doctitle = "Demonstrating all headers"
17 } % begin verbatim
18
19 \header {
20   copyright = "copyright"
21   title = "title"
22   subtitle = "subtitle"
23   composer = "composer"
24   arranger = "arranger"
25   instrument = "instrument"
26   metre = "metre"
27   opus = "opus"
28   piece = "piece"
29   poet = "poet"
30   texidoc = "All header fields with special meanings."
31   copyright = "public domain"
32   enteredby = "jcn"
33   source = "urtext"
34 }
35
36 \layout {
37   ragged-right = ##f
38 }
39
40 \score {
41   \relative c'' { c1 | c | c | c }
42 }
43
44 \score {
45    \relative c'' { c1 | c | c | c }
46    \header {
47      title = "localtitle"
48      subtitle = "localsubtitle"
49      composer = "localcomposer"
50      arranger = "localarranger"
51      instrument = "localinstrument"
52      metre = "localmetre"
53      opus = "localopus"
54      piece = "localpiece"
55      poet = "localpoet"
56      copyright = "localcopyright"
57    }
58 }