]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/demonstrating-all-headers.ly
Merge branch 'translation' into staging
[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.14.2"
8
9 \header {
10 %% Translation of GIT committish: 30339cb3706f6399c84607426988b25f79b4998c
11   texidocfr = "
12 Voici la liste de tous les champs d'entête :
13
14 "
15   doctitlefr = "Champs d'entête"
16
17   lsrtags = "text, paper-and-layout, titles"
18
19   texidoc = "
20 A demonstration of all headers.
21
22 "
23   doctitle = "Demonstrating all headers"
24 } % begin verbatim
25
26
27 \header {
28   copyright = "copyright"
29   title = "title"
30   subtitle = "subtitle"
31   composer = "composer"
32   arranger = "arranger"
33   instrument = "instrument"
34   metre = "metre"
35   opus = "opus"
36   piece = "piece"
37   poet = "poet"
38   texidoc = "All header fields with special meanings."
39   copyright = "public domain"
40   enteredby = "jcn"
41   source = "urtext"
42 }
43
44 \layout {
45   ragged-right = ##f
46 }
47
48 \score {
49   \relative c'' { c1 | c | c | c }
50 }
51
52 \score {
53    \relative c'' { c1 | c | c | c }
54    \header {
55      title = "localtitle"
56      subtitle = "localsubtitle"
57      composer = "localcomposer"
58      arranger = "localarranger"
59      instrument = "localinstrument"
60      metre = "localmetre"
61      opus = "localopus"
62      piece = "localpiece"
63      poet = "localpoet"
64      copyright = "localcopyright"
65    }
66 }
67