\version "2.24.4"

\header {
	title = "\"Super Gaida\""
	composer = "trad"
	arranger = "Arr. Paul Marini"
	copyright = "9/13/2026" %date of latest edits
}
\paper {
  #(set-paper-size "letter")
  }

the_form = %Form
	\markup { \box \column {
	\line { " " }
	\line { \bold " Form: " }
	\line { " " }
	\line { " " }
	}}

test = { \relative c' { \tempo 4 = 80 
	\repeat volta 2 {
	}
}
}

%{ ornament conventions, a/o 10/2017
%	\prall		regular up ornament, metric
%	\lineprall	quick, nonmetric up ornament		(was \mordent)
%	\mordent	regular down ornament, nonmetric	(was \upbow)
%	\prallprall	consecutive up ornaments, metric
%   \trill		trill
%	\turn		turn of some sort
%}

%{ split part:
%	<<
%		{ c8 d e f g f e d | c1 | }
%	\\
%		{ c,2 d8 e f g | c4 g e c | }
%	>>
%}

%{ modified volta spanners:
% (now we are putting the alternatives inside the repeat)
%	\repeat volta 4 {
%		\volta 1,2,3 { ... }
%		\volta 4 { ... }
%	}
%}

%{ modified notes:
%   small notes:     \magnifyMusic #0.75 { ... }
%   slash notation:  \improvisationOn \omit Stem  -- \improvisationOff \undo \omit Stem
%}

%{ right-aligned text: \textEndMark \markup {}
%}

midbrass = { \relative c, { 

  \section
  \sectionLabel \markup { \box "A" }
	\repeat volta 2 {
    <f c' a'>1->~^\markup { \italic "repeats many times" } | <f c' a'> | <f c' a'>->~ | <f c' a'> |
	}
  \break

  \section
  \sectionLabel \markup { \box "B" }
	\repeat volta 2 {
    <f c' a'>2^\markup { \italic "cued by sax melody" } <bes d f>4 <b? d aes'> | <c e g>2 <f, c' a'> |
    <f c' a'>2 <bes d f>4 <b? d aes'> | <c e g>2 <f, c' a'> |
	}

}}


changes = { \chordmode {
\set minorChordModifier = \markup { \fontsize #4 "-" }

% A
f1 | f | f | f |

% B 
f2 bes4 b:min7.5- | c2 f |
f2 bes4 b:min7.5- | c2 f |
}}

\book {
	\bookOutputSuffix "midbrass"
  \header { poet = "Midbrass" }
	\score {
    <<
      \new ChordNames {
        \set chordChanges = ##t
        \changes
      }
      \new Staff { \clef bass
        \midbrass
      }
    >>
	}
}
%{
\book {
	\score {
		<<
			\new Staff {
				\set Staff.midiInstrument = #"trumpet" \unfoldRepeats
				\trumpet
			}
		\new Staff {
			\set Staff.midiInstrument = #"trumpet" \unfoldRepeats
			\midbrass
		}
		>>
		\midi { }
	}
}
\book {
	\score {
		<<
			\new Staff {
				\set Staff.midiInstrument = #"trumpet" \unfoldRepeats
				\test
			}
		>>
		\midi { }
	}
}
%}
