]> git.donarmstrong.com Git - lilypond.git/commitdiff
Brown paper bag: undo accidently deletion of regtest.
authorGraham Percival <graham@percival-music.ca>
Tue, 5 Jun 2007 07:32:40 +0000 (00:32 -0700)
committerGraham Percival <graham@percival-music.ca>
Tue, 5 Jun 2007 07:32:40 +0000 (00:32 -0700)
input/regression/page-label.ly

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..9f40328cf4ce958691104ba062534783823adcb2 100644 (file)
@@ -0,0 +1,42 @@
+\version "2.11.25"
+
+\header {
+  texidoc = "Page labels may be placed inside music or at top-level,
+and refered to in markups."
+}
+
+#(set-default-paper-size "a6")
+
+#(define-markup-command (toc-line layout props label text) (symbol? markup?)
+  (interpret-markup layout props
+   (markup #:fill-line (text #:page-ref label "8" "?"))))
+
+\markup \huge \fill-line { \null "Title Page" \null }
+
+\pageBreak
+
+\markup \column {
+  \large \fill-line { \null "Table of contents" \null }
+  \toc-line #'toc "Table of contents"
+  \toc-line #'firstScore "First Score"
+  \toc-line #'markA "Mark A"
+  \toc-line #'markB "Mark B"
+  \toc-line #'markC "Mark C"
+  \toc-line #'unknown "Unknown label"
+} \label #'toc
+
+\pageBreak
+
+\score {
+  { c'2 c'
+    \mark \markup { A (page \concat { \page-ref #'markA "0" "?" ) }} \label #'markA 
+    c' c'
+    \pageBreak
+    \mark "B" \label #'markB
+    d' d'
+    d' d'
+    \once \override Score . RehearsalMark #'break-visibility = #begin-of-line-invisible
+    \mark "C" \label #'markC
+  }
+  \header { piece = "First score" }
+} \label #'firstScore
\ No newline at end of file