lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to put RehearsalMarks on their own horizontal line?


From: Kieren MacMillan
Subject: Re: How to put RehearsalMarks on their own horizontal line?
Date: Tue, 15 Jul 2014 14:04:09 -0400

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:  address@hidden


reply via email to

[Prev in Thread] Current Thread [Next in Thread]