Change order of above staff objects

2014-07-13 Thread Helge Kruse

Hello,

I have a score with some long tempo items. Since my part has multiple 
full bar rests I get several rehearsal marks in the area of the tempo. 
Unfortunately they are placed above the tempo. How can I get the 
rehearsal mark immediately above the staff line?


Minimum example:

\version 2.18.0
{
  \tempo Allegretto ma non troppo 4=100
  \time 4/4
  %\compressFullBarRests
  R1*2 \mark\default
  R1 R
b' d'' f'' a'' %c'''

}

The rehearsal mark is too high. Somehow it gets a lower place when I 
remove *both* comment characters.


Regards
Helge



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


Re: Change order of above staff objects

2014-07-13 Thread Pierre Perol-Schneider
Hi Helge,

2014-07-13 10:26 GMT+02:00 Helge Kruse helge.kr...@gmx.net:


 How can I get the rehearsal mark immediately above the staff line?


Try :

\version 2.18.0

{
  \once\override Score.MetronomeMark.outside-staff-priority = #2000
  \tempo Allegretto ma non troppo 4=100
  \time 4/4
  \compressFullBarRests
  R1*2
  \mark\default
  R1 R
  b' d'' f'' a'' c'''
}

See also :
http://www.lilypond.org/doc/v2.18/Documentation/learning/outside_002dstaff-objects.html#the-outside_002dstaff_002dpriority-property

Cheers,
Pierre
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Change order of above staff objects

2014-07-13 Thread Helge Kruse

Am 13.07.2014 10:44, schrieb Pierre Perol-Schneider:

\version 2.18.0

{
   \once\override Score.MetronomeMark.outside-staff-priority = #2000
   \tempo Allegretto ma non troppo 4=100
   \time 4/4
   \compressFullBarRests
   R1*2
   \mark\default
   R1 R
   b' d'' f'' a'' c'''
}

See also :
http://www.lilypond.org/doc/v2.18/Documentation/learning/outside_002dstaff-objects.html#the-outside_002dstaff_002dpriority-property



Great, this works perfectly. I searched the notation reference only but 
missed the corresponding paragraph. But it's there:


4.4.3 Vertical collision avoidance

Regards Helge



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