%% 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/tag-multiple.ly"
\sourcefileline 0
\version "2.23.14"
\header {

  texidoc = "The @code{\\removeWithTag} and @code{\\keepWithTag}
commands can name multiple tags to remove or to keep."

}

\layout { ragged-right= ##t }

music =
<<
  \tag #'flood \new Voice { \voiceOne \repeat unfold 16 { c'''8 cis'''8 } }
  \tag #'highball \new Voice { \voiceThree \repeat unfold 8 { a'4( as') } }
  \tag #'buffoon \new Voice { \voiceFour \repeat unfold 2 { f1~ 1 } }
>>

demo =
#(define-music-function (fun syms m)
  (ly:music-function? symbol-list? ly:music?)
  #{
    \new Staff
    <<
      { \textMark #(string-join (map symbol->string syms) "&") \skip 1*4 }
      $fun #syms #m
    >>
  #})

#(set-global-staff-size 16)

\markuplist {
  \fill-line { \center-column \fontsize #5 \bold { "\\keepWithTag" } }
  \vspace #1
}
\demo #keepWithTag #'(none) \music
\demo #keepWithTag #'(flood highball buffoon) \music
\demo #keepWithTag #'(flood buffoon) \music
\demo #keepWithTag #'(buffoon) \music

\markup \vspace #2

\markuplist {
  \fill-line { \center-column \fontsize #5 \bold { "\\removeWithTag" } }
  \vspace #1
}
\demo #removeWithTag #'(none) \music
\demo #removeWithTag #'(flood highball buffoon) \music
\demo #removeWithTag #'(flood buffoon) \music
\demo #removeWithTag #'(buffoon) \music



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