]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/demonstrating-all-headers.ly
resolve merge
[lilypond.git] / Documentation / snippets / demonstrating-all-headers.ly
diff --git a/Documentation/snippets/demonstrating-all-headers.ly b/Documentation/snippets/demonstrating-all-headers.ly
new file mode 100644 (file)
index 0000000..b20082f
--- /dev/null
@@ -0,0 +1,59 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "text, paper-and-layout, titles"
+
+  texidoc = "
+A demonstration of all headers.
+
+"
+  doctitle = "Demonstrating all headers"
+} % begin verbatim
+
+\header {
+  copyright = "copyright"
+  title = "title"
+  subtitle = "subtitle"
+  composer = "composer"
+  arranger = "arranger"
+  instrument = "instrument"
+  metre = "metre"
+  opus = "opus"
+  piece = "piece"
+  poet = "poet"
+  texidoc = "All header fields with special meanings."
+  copyright = "public domain"
+  enteredby = "jcn"
+  source = "urtext"
+}
+
+\layout {
+  ragged-right = ##f
+}
+
+\score {
+  \relative c'' { c1 | c | c | c }
+}
+
+\score {
+   \relative c'' { c1 | c | c | c }
+   \header {
+     title = "localtitle"
+     subtitle = "localsubtitle"
+     composer = "localcomposer"
+     arranger = "localarranger"
+     instrument = "localinstrument"
+     metre = "localmetre"
+     opus = "localopus"
+     piece = "localpiece"
+     poet = "localpoet"
+     copyright = "localcopyright"
+   }
+}
+