%% 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/musicxml/01a-Pitches-Pitches.xml"
\sourcefileline 0
\version "2.26.0"
% automatically converted by musicxml2ly from -
\pointAndClickOff

%% additional definitions required by the score:
#(define make-bracketed
   (grob-transformer
    'stencil
    (lambda (grob orig)
      (let* ((paren-stil (grob-interpret-markup
                          grob
                          (markup #:musicglyph "accidentals.leftparen")))
             (ext (ly:stencil-extent paren-stil Y))
             (stil (ly:accidental-interface::print grob))
             (thick (ly:output-def-lookup (ly:grob-layout grob)
                                          'line-thickness 0.1))
             (padding thick)
             (protrusion (* 2.5 thick))
             (lb (ly:bracket Y ext thick protrusion))
             (rb (ly:bracket Y ext thick (- protrusion))))
        (set! stil (ly:stencil-combine-at-edge stil X 1 rb padding))
        (set! stil (ly:stencil-combine-at-edge stil X -1 lb padding))
        stil))))

bracketAcc =
  \tweak AccidentalCautionary.parenthesized ##f
  \tweak AccidentalCautionary.stencil #make-bracketed \etc


\header {
  texidoc = "All pitches from G to c’’’’ in ascending steps. First without
    accidentals, then with a sharp, and then with a flat accidental.

    Measures 25 and 26 show explicit natural accidentals; measure 27 displays
    double alterations, cautionary, and editorial accidentals."
}
\layout {
  \context {
    \Staff
    printKeyCancellation = ##f
  }
  \context {
    \Score
    autoBeaming = ##f
  }
}
PartPOneVoiceOne = \relative g, {
  \clef "treble" \time 4/4 \key c \major g4 a4 b4 c4 | % 1
  d4 e4 f4 g4 | % 2
  a4 b4 c4 d4 | % 3
  e4 f4 g4 a4 | % 4
  b4 c4 d4 e4 | % 5
  f4 g4 a4 b4 | % 6
  c4 d4 e4 f4 | % 7
  g4 a4 b4 c4 | % 8
  gis,,,,4 ais4 bis4 cis4 | % 9

  \barNumberCheck #10
  dis4 eis4 fis4 gis4 | % 10
  ais4 bis4 cis4 dis4 | % 11
  eis4 fis4 gis4 ais4 | % 12
  bis4 cis4 dis4 eis4 | % 13
  fis4 gis4 ais4 bis4 | % 14
  cis4 dis4 eis4 fis4 | % 15
  gis4 ais4 bis4 cis4 | % 16
  ges,,,,4 as4 bes4 ces4 | % 17
  des4 es4 fes4 ges4 | % 18
  as4 bes4 ces4 des4 | % 19

  \barNumberCheck #20
  es4 fes4 ges4 as4 | % 20
  bes4 ces4 des4 es4 | % 21
  fes4 ges4 as4 bes4 | % 22
  ces4 des4 es4 fes4 | % 23
  ges4 as4 bes4 ces4 | % 24
  e,,,!4 f!4 g!4 a!4 | % 25
  b!4 c!4 d!4 e!4 | % 26
  cisis4 ceses4 cis?4 \bracketAcc cis?4 \bar "|."
}


% The score definition
\score {
  <<
    \new Staff = "P1" <<
      \context Staff <<
        \override Staff.BarLine.allow-span-bar = ##f
        \mergeDifferentlyDottedOn
        \mergeDifferentlyHeadedOn
        \context Voice = "PartPOneVoiceOne" {
          \PartPOneVoiceOne
        }
      >>
    >>
  >>
  \layout {}
  % To create MIDI output, uncomment the following line:
  % \midi { \tempo 4 = 100 }
}




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