Hello.

> can I put "marks" A, B, C etc etc generated by \mark\default in a
> separate file to be included in every staff/staffgroup, [...]

Yes.
You could proceed somewhat along the following lines.

In file "global.inc.ly":
%---CUT---
\version "2.12.0"

global = {
  \key d \minor
  \time 2/4

  \mark \default
  s1*2/4*8 |

  \bar "|."
}
%---CUT---

In file "violin.inc.ly":
%---CUT---
\version "2.12.0"

\include "global.inc.ly"

violinNotes = \relative c' {
  % ....
}

violinStaff = \context Staff = "Violin" {
  \clef G
  <<
    \global
    \violinNotes
  >>
}
%---CUT---

In file "violin.ly":
%---CUT---
\version "2.12.0"

\include "violin.inc.ly"

\score {
  \violinStaff
  \layout  {}
}
%---CUT---

And similarly for all the instruments and the orchestra score.

Best,
Gilles


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user
  • marks Francesco Petrogalli
    • Re: marks Gilles Sadowski
    • Re: marks Francisco Vila

Reply via email to