Re: Copying metronome marks to multiple \StaffGroup's

2015-03-12 Thread Kieren MacMillan
Hi Xavier, Actually it should be done easily by adding Metronome_mark_engraver to the StaffGroup. I find it about the same amount of work — but far more flexible — to add a new context. Unfortunately there is a bug in LilyPond and it does not work.

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-12 Thread Xavier Scheuer
On 11 March 2015 at 19:40, Kieren MacMillan kieren_macmil...@sympatico.ca wrote: Hi, Search for “ScoreMarks” or “MarkLine” in the archives and snippets. There are lots of discussions about this. Hi, Actually it should be done easily by adding Metronome_mark_engraver to the StaffGroup.

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread Stephen MacNeil
You could always do a markup ? tpo = \markup { {\bold Allegro \hspace #1 \concat { \lower #.25 ( \small \raise #.25 \note #4 #UP } \hspace #.5 { = 90 \raise #.5 \musicglyph #scripts.tenuto\concat{ 120\bold )}} } } \relative c' { \clef treble \key c \major \time 4/4 \tempo Allegro 4 = 90

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread Pierre Perol-Schneider
Hi Vladimir, How about : \version 2.18.2 myMusic = { \tempo 4 = 120 a' } \score { \new Staff \with { \consists Metronome_mark_engraver } \myMusic \new Staff \myMusic \new StaffGroup \new Staff \with { \consists Metronome_mark_engraver }

Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread H. S. Teoh
Hi, Apologies if this is already answered somewhere, 'cos I couldn't find it in the docs or on google, but I'm working on an orchestral score and would like for each \tempo marking to appear above each orchestral choir (winds, brass, strings). E.g., I'd like to just write \tempo 4 = 120 once, and

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread Kieren MacMillan
Hi, Search for “ScoreMarks” or “MarkLine” in the archives and snippets. There are lots of discussions about this. Hope this helps! Kieren. On Mar 11, 2015, at 1:55 PM, H. S. Teoh hst...@quickfur.ath.cx wrote: Hi, Apologies if this is already answered somewhere, 'cos I couldn't find it in

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread H. S. Teoh
On Wed, Mar 11, 2015 at 02:40:52PM -0400, Kieren MacMillan wrote: Hi, Search for “ScoreMarks” or “MarkLine” in the archives and snippets. There are lots of discussions about this. [...] Hi Kieran, I browsed through several google search results for those keywords, but all I found were

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread Kieren MacMillan
Hi, I browsed through several google search results for those keywords, but all I found were questions related to spacing and custom marks contexts, but I still can't figure out what I need to do to get the metronome marks to appear above each StaffGroup. Do you have a short sample that I

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread H. S. Teoh
On Wed, Mar 11, 2015 at 05:47:15PM -0400, Stephen MacNeil wrote: You could always do a markup ? tpo = \markup { {\bold Allegro \hspace #1 \concat { \lower #.25 ( \small \raise #.25 \note #4 #UP } \hspace #.5 { = 90 \raise #.5 \musicglyph #scripts.tenuto\concat{ 120\bold )}} } } [...]

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread H. S. Teoh
On Wed, Mar 11, 2015 at 07:47:34PM +0100, Pierre Perol-Schneider wrote: Hi Vladimir, How about : \version 2.18.2 myMusic = { \tempo 4 = 120 a' } \score { \new Staff \with { \consists Metronome_mark_engraver } \myMusic \new Staff \myMusic \new

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread Jim Long
On Wed, Mar 11, 2015 at 07:30:54PM -0700, H. S. Teoh wrote: On Wed, Mar 11, 2015 at 08:40:20PM -0400, Kieren MacMillan wrote: [...] Hopefully the snippet below helps. Thanks so much!!! snip A minor issue remains: how do I adjust the vertical distance of the tempo marks from the staff

Re: Copying metronome marks to multiple \StaffGroup's

2015-03-11 Thread H. S. Teoh
On Wed, Mar 11, 2015 at 08:40:20PM -0400, Kieren MacMillan wrote: [...] Hopefully the snippet below helps. Thanks so much!!! I finally figured out the problem with my score: I had inadvertently put \numericTimeSignature inside a staff instead of a \layout block, and somehow that caused strange