]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/demonstrating-all-headers.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / demonstrating-all-headers.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.16.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
20 \header {
21   copyright = "copyright"
22   title = "title"
23   subtitle = "subtitle"
24   composer = "composer"
25   arranger = "arranger"
26   instrument = "instrument"
27   metre = "metre"
28   opus = "opus"
29   piece = "piece"
30   poet = "poet"
31   texidoc = "All header fields with special meanings."
32   copyright = "public domain"
33   enteredby = "jcn"
34   source = "urtext"
35 }
36
37 \layout {
38   ragged-right = ##f
39 }
40
41 \score {
42   \relative c'' { c1 | c | c | c }
43 }
44
45 \score {
46    \relative c'' { c1 | c | c | c }
47    \header {
48      title = "localtitle"
49      subtitle = "localsubtitle"
50      composer = "localcomposer"
51      arranger = "localarranger"
52      instrument = "localinstrument"
53      metre = "localmetre"
54      opus = "localopus"
55      piece = "localpiece"
56      poet = "localpoet"
57      copyright = "localcopyright"
58    }
59 }