Hi Karol,

> I tried to define new context, but with no success.

It would help if you included a minimal code example, so we could diagnose the 
problem.

This does what you want, I think:

\version "2.19.10"

\layout {
 \context {
   \type "Engraver_group"
   \name ScoreMarks
   \consists "Staff_collecting_engraver"
   \consists "Axis_group_engraver"
   \override VerticalAxisGroup.staff-affinity = #DOWN
   \consists "Mark_engraver"
   \consists "Time_signature_engraver"
   \override TimeSignature.stencil = #point-stencil
 }
 \context {
   \Score
   \remove "Mark_engraver"
   \accepts ScoreMarks
 }
}

global = {
 \time 3/4
 \tempo "Allegro"
 s4 \mark \default s2
 s4 \mark \default s2
}

part = {
 \clef treble
 c'4 d' e'
 c'4 d' e'
}

\score {
 <<
   \new ScoreMarks \global
   \new Staff << \global \part >>
>> 
}

Hope this helps!
Kieren.
_______________________

Kieren MacMillan, composer
www:  <http://www.kierenmacmillan.info>
email:  i...@kierenmacmillan.info
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to