%% 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/markup-note-sizes.ly"
\sourcefileline 0
\version "2.23.3"

\header {
  texidoc = "The @code{note-by-number} markup-command is robust with all kinds
of size changings.
For every @code{Stem} the vertical length and thickness prints reasonable."
}

\layout { \textLengthOn }

test =
\markup {
  "quavers:"
  \fontsize #-3 \note-by-number #3 #0 #1
  \note-by-number #3 #0 #1
  \fontsize #3 \note-by-number #3 #0 #1
}

testMusic = {
  \set Score.fontSize = #-3
  \override Score.MetronomeMark.font-size = #-3
  \override TextScript.font-size = #-3
  \tempo "Andante" 8 = 88
  b8_\test s2..
  \set Score.fontSize = #0
  \override Score.MetronomeMark.font-size = #0
  \override TextScript.font-size = #0
  \tempo "Andante" 8 = 88
  b8_\test s2..
  \set Score.fontSize = #3
  \override Score.MetronomeMark.font-size = #3
  \override TextScript.font-size = #3
  \tempo "Andante" 8 = 88
  b8_\test s2..
}

%% Some size settings below do not make much sense, though note-by-number
%% should be able to cope with them
#(set-global-staff-size 30)

\book {
  #(set-global-staff-size 10)

  \paper {
	#(layout-set-staff-size 25)
	indent = 0
	ragged-right = ##f
  }

  \markup { "toplevel markup in \\book: " \test }

  \score { \new Staff \testMusic \layout { #(layout-set-staff-size 10) } }

  \score { \new Staff \with { \magnifyStaff #3/4 } \testMusic }
  \score { \new Staff \testMusic }
  \score { \new Staff \with { \magnifyStaff #5/4 }\testMusic }

  \score { \new Staff \testMusic \layout { #(layout-set-staff-size 25) } }
}



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