On Mon, 09 Mar 2015 02:20:51 +0100
Noeck <noeck.marb...@gmx.de> wrote:

> Hi Josiah,
> 
> is this what you want?
> http://lists.gnu.org/archive/html/bug-lilypond/2010-10/msg00144.html

That got me on the right track, thank you! What I ended up with is a
bit simpler:

#(define sequence-number 0)

#(set! sequence-number (1+ sequence-number))
\score {
\new Staff \with {
    instrumentName = \markup { 
      \concat {#(number->string sequence-number)} "." % "1."
    }
  } 
  % music
}

#(set! sequence-number (1+ sequence-number))
\score {
\new Staff \with {
    instrumentName = \markup { 
      \concat {#(number->string sequence-number)} "." % "2."
    }
  } 
  % music
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to