%% Generated by lilypond-book
%% Options: [exampleindent=10.16\mm,indent=0\mm,line-width=160\mm,paper-height=845.047\pt,paper-width=597.508\pt,papersize='(cons (* 597.508 pt) (* 845.047 pt))]
\include "lilypond-book-preamble.ly"


% ****************************************************************
% Start cut-&-pastable-section
% ****************************************************************

#(ly:set-option 'eps-box-padding 3.000000)



\paper {
  #(set-paper-size '(cons (* 597.508 pt) (* 845.047 pt)))
  indent = 0\mm
  line-width = 160\mm
  % offset the left padding, also add 1mm as lilypond creates cropped
  % images with a little space on the right
  line-width = #(- line-width (* mm  3.000000) (* mm 1))
}

\layout {
  
}




% ****************************************************************
% ly snippet:
% ****************************************************************
\sourcefilename "/lilypond-2.26.0/input/regression/page-label.ly"
\sourcefileline 0
\version "2.23.14"

\header {
  texidoc = "Page labels may be placed inside music or at top-level,
and referred to in markups.  Labels created with @code{\\tocItem}
(and thus bearing an internally-generated unique identifying symbol)
remain referrable by their user-specified name."
}

#(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" "?"))))

\book {
  \markup \huge \fill-line { \null "Title Page" \null }

  \pageBreak

  \label #'toc
  \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"
  }

  \pageBreak

  \label #'firstScore
  \score {
    { c'2 c'
      \textMark \markup {
        A (page \concat { \page-ref #'markA "0" "?" ) }
      } \label #'markA
      c' c'
      \pageBreak
      \textMark "B" \label #'markB
      d' d'
      \tocItem parent "This shouldn’t be printed"
      d' d'
      \textEndMark "C" \label #'markC
      \tocItem parent.markC "This shouldn’t be printed"
    }
    \header { piece = "First score" }
  }
}



% ****************************************************************
% end ly snippet
% ****************************************************************
