Re: RhythmicStaff with measure counter

2023-09-06 Thread Rajesh Baskar
Thank you so much Jean. On 9/6/2023 7:57 AM, Jean Abou Samra wrote: Le mardi 05 septembre 2023 à 19:22 -0700, Rajesh Baskar a écrit : I'm trying to achieve displaying the measure counter on top of the each measure on a rhythmic staff.  The below script working fine if you change the \new Rhythm

Re: RhythmicStaff with measure counter

2023-09-06 Thread Rajesh Baskar
Thank you Paul. On 9/6/2023 1:49 AM, Paul Hodges wrote: In the layout you're still adding the Measure_counter_engraver to the Staff context; you need to add it to the RhythmicStaff context. Paul *From: * Rajesh Baskar *To: * Lilypond-User Mailing List *Sent: * 06/09/2023 3:22 *Subject: * R

Re: RhythmicStaff with measure counter

2023-09-06 Thread Jean Abou Samra
Le mardi 05 septembre 2023 à 19:22 -0700, Rajesh Baskar a écrit : > I'm trying to achieve displaying the measure counter on top of the each > measure on a rhythmic staff.  The below script working fine if you > change the \new RhythmicStaff to \new Staff. > > How do I make this script work for r

Re: RhythmicStaff with measure counter

2023-09-06 Thread Paul Hodges
In the layout you're still adding the Measure_counter_engraver to the Staff context; you need to add it to the RhythmicStaff context. Paul From: Rajesh Baskar To: Lilypond-User Mailing List Sent: 06/09/2023 3:22 Subject: RhythmicStaff with measure counter Hi, I'm trying

Re: RhythmicStaff followed by Staff in the same score block

2013-10-29 Thread Stjepan Horvat
Yes i did understund that..and i used it quite well.. what i wanted to do was: \score { << \new ChordNames { c1 } \new RhythmicStaff { s1 } \new Lyrics { \lyricmode { What8 a ni -- ce day2 } } >> \layout {} } \score { << \new ChordNames { g1 } \new Staff

Re: RhythmicStaff followed by Staff in the same score block

2013-10-28 Thread Trevor Daniels
Stjepan Horvat wrote Monday, October 28, 2013 4:38 PM > Hi guys..Is this possible.. > I'm dealing with speaking music which has chords and duration..something > like poetry over music..and afterwords singing parts.. > i know that i can separate score blocks but it would be better if it > could

Re: RhythmicStaff issues in a snippet

2012-07-20 Thread Dominique Faure
On Fri, Jul 20, 2012 at 9:52 PM, David Kastrup wrote: > Reedmace Star writes: > >> * 2012-07-20 17:39 +0200 David Kastrup: >>> Dominique Faure writes: >>> > Despite the RhythmicStaff is simplifying the process, how >>> > could I make it display chord of dotted notes as single dotted >>> > notes?

Re: RhythmicStaff issues in a snippet

2012-07-20 Thread David Kastrup
Reedmace Star writes: > * 2012-07-20 17:39 +0200 David Kastrup: >> Dominique Faure writes: >> > Despite the RhythmicStaff is simplifying the process, how >> > could I make it display chord of dotted notes as single dotted >> > notes? >> > Dots are kept unmerged. Is it a bug? >> >> Calling it a

Re: RhythmicStaff issues in a snippet

2012-07-20 Thread Reedmace Star
* 2012-07-20 17:39 +0200 David Kastrup: > Dominique Faure writes: > > Despite the RhythmicStaff is simplifying the process, how > > could I make it display chord of dotted notes as single dotted > > notes? > > Dots are kept unmerged. Is it a bug? > > Calling it a bug seems like a reasonable inter

Re: RhythmicStaff issues in a snippet

2012-07-20 Thread David Kastrup
Dominique Faure writes: > Hi, > I released the following snippet in the LSR: > http://lsr.dsi.unimi.it/LSR/Item?id=848 > > Sadly, it lacks some features I'd really like to have but couldn't > manage to provide (I hope some of you could help me to). > > Having to give both the melodic and the rhyt

Re: RhythmicStaff vs. repeat bar-aligned markup

2011-04-23 Thread Richard Opheim
Wow. Couldn't even find that in the command index. But it worked just as you said. On Sat, Apr 23, 2011 at 3:07 AM, Phil Holmes wrote: > LilyPond normally only places Rehearsal Marks above the top staff. To > get rid of marks altogether, add this to the top of your code: > > \layout { > \c

Re: RhythmicStaff vs. repeat bar-aligned markup

2011-04-23 Thread Phil Holmes
LilyPond normally only places Rehearsal Marks above the top staff. To get rid of marks altogether, add this to the top of your code: \layout { \context { \Score \remove "Mark_engraver" \remove "Staff_collecting_engraver" } } Then add \consists Mark_engraver

Re: RhythmicStaff Multimeasure Rests

2010-06-20 Thread Phil Holmes
"Jay Anderson" wrote in message news:58adba261003092132h7283d8d9v980ca4a3c2ed4...@mail.gmail.com... On Tue, Mar 9, 2010 at 3:19 PM, Neil Puttock wrote: \override RhythmicStaff.MultiMeasureRest #'staff-position = #0.01 Thanks. That works great. Now I just have to deal with \context{\RemoveEm

Re: RhythmicStaff Multimeasure Rests

2010-03-10 Thread Mats Bengtsson
Jay Anderson wrote: On Tue, Mar 9, 2010 at 3:19 PM, Neil Puttock wrote: \override RhythmicStaff.MultiMeasureRest #'staff-position = #0.01 Thanks. That works great. Now I just have to deal with \context{\RemoveEmptyRhythmicStaffContext} killing my settings. I remember following the

Re: RhythmicStaff Multimeasure Rests

2010-03-09 Thread Jay Anderson
On Tue, Mar 9, 2010 at 3:19 PM, Neil Puttock wrote: > \override RhythmicStaff.MultiMeasureRest #'staff-position = #0.01 Thanks. That works great. Now I just have to deal with \context{\RemoveEmptyRhythmicStaffContext} killing my settings. I remember following the discussion recently, but I could

Re: RhythmicStaff Multimeasure Rests

2010-03-09 Thread Neil Puttock
On 7 March 2010 22:21, Jay Anderson wrote: > On Fri, Mar 5, 2010 at 10:31 PM, Jay Anderson wrote: >> \version "2.13.15" >> \new RhythmicStaff >> { >>  %\override Staff.MultiMeasureRest #'extra-offset = #'(0 . -1) >>  R1 >> } > > Of course this doesn't quite work because all multi measure rests ar

Re: RhythmicStaff Multimeasure Rests

2010-03-07 Thread Jay Anderson
On Fri, Mar 5, 2010 at 10:31 PM, Jay Anderson wrote: > \version "2.13.15" > \new RhythmicStaff > { >  %\override Staff.MultiMeasureRest #'extra-offset = #'(0 . -1) >  R1 > } Of course this doesn't quite work because all multi measure rests are moved and not just single whole measure rests. I've

RE: RhythmicStaff

2009-12-12 Thread craigbakalian
Hi, I just did a compile with 2.12 and the layout is good. Craig Bakalian On Sat, 2009-12-12 at 16:45 -0500, James Lowe wrote: > Craig, > > Just to say that 2.13.8 is an unstable release and this is obviously a big > project for you, rather than 'trying it out for fun' so to that end, have

RE: RhythmicStaff

2009-12-12 Thread James Lowe
Craig, Just to say that 2.13.8 is an unstable release and this is obviously a big project for you, rather than 'trying it out for fun' so to that end, have to tried to compile the file using the stable 2.12.x release. At least that way we know if it is something new in this work-in-progress rel

Re: RhythmicStaff - gray-scaling and getting rid of double heads for chords

2008-09-30 Thread andersvi
> "N" == Neil Puttock <[EMAIL PROTECTED]> writes: N> Hi Anders, Have you looked at the LilyPond Snippet Repository N> (http://lsr.dsi.unimi.it/)? N> Try searching for `color'. Thank you very much! This problem got solved in a satisfactory way. The lsr site seems to be full of n

Re: RhythmicStaff - gray-scaling and getting rid of double heads for chords

2008-09-30 Thread Neil Puttock
Hi Anders, 2008/9/29 <[EMAIL PROTECTED]>: > Id like to make a smaller RhythmicStaff with some special qualities, > like smaller font etc. This one works fine, but i have a couple of > things id like to fix[1] (see below): > > rytmestaff = #(define-music-function (parser location navn rytmer) (st

Re: RhythmicStaff - gray-scaling and getting rid of double heads for chords

2008-09-30 Thread andersvi
> "a" == andersvi <[EMAIL PROTECTED]> writes: a> Id like to make a smaller RhythmicStaff with some special qualities, a> like smaller font etc. This one works fine, but i have a couple of a> things id like to fix[1] (see below): a> 2) For every chord in the input i get a 'do

Re: RhythmicStaff - gray-scaling and getting rid of double heads for chords

2008-09-29 Thread andersvi
> "V" == Vivian Barty-Taylor <[EMAIL PROTECTED]> writes: V> The "doubled" Noteheads come about because RhythmicStaff V> interprets all pitches as the same. I don't know what effect you V> are wanting exactly Thanks. Im after what ive understood RhythmicStaff was meant for, a

Re: RhythmicStaff - gray-scaling and getting rid of double heads for chords

2008-09-29 Thread Vivian Barty-Taylor
Hi Anders, I'm not sure about the colouring issue. Hoping someone else has some ideas. The "doubled" Noteheads come about because RhythmicStaff interprets all pitches as the same. I don't know what effect you are wanting exactly, but if you want a single staff line with Noteheads on eithe

Re: rhythmicStaff in instrumental score How?

2008-05-03 Thread Stan Sanderson
On May 3, 2008, at 1:14 PM, Jay Hamilton wrote: I looked through lsr for scores with staves of one line didn't find one. My score oboe clarinet marimba woodblock (single line staff) cymbals (ditto) cello Contrabass But I'm stumped as how to make the code for the single lines- I wasn't goin

Re: RhythmicStaff

2007-09-28 Thread Mats Bengtsson
Quoting Charles Gran <[EMAIL PROTECTED]>: If I'm creating a sheet of short rhythms [ex below], do I meed to use \RhythmicStaff for each rhythm, or can I do something globally? Nothing that would simplify the input. What you can do is to remove the explicit \score{...}, i.e. each separate examp