Hide time signature numerator?

2012-05-03 Thread Owain Sutton
I'm putting together worksheets for children, where various pieces of notation are missing, for them to fill in. One thing I'd like to do is hide the top half of the time signature, but don't know how to do this. The snippets repository comes close -

Hide time signature numerator?

2012-05-03 Thread Owain Sutton
I'm putting together worksheets for children, where various pieces of notation are missing, for them to fill in. One thing I'd like to do is hide the top half of the time signature, but don't know how to do this. The snippets repository comes close -

Re: Hide time signature numerator?

2012-05-03 Thread James
Hello, On 2 May 2012 21:48, Owain Sutton ow...@owainsutton.co.uk wrote: I'm putting together worksheets for children, where various pieces of notation are missing, for them to fill in. One thing I'd like to do is hide the top half of the time signature, but don't know how to do this. The

Re: Hide time signature numerator?

2012-05-03 Thread Kieren MacMillan
Hi James, http://lsr.dsi.unimi.it/LSR/Item?id=609 instead? looks quite straightforward … as long as you also add an appropriate offset, so that the single-digit time signature remains where it's supposed to (i.e., top-aligned with the staff). =) Cheers, Kieren.

Re: Hide time signature numerator?

2012-05-03 Thread Kieren MacMillan
Hi James (both), Except that the original request was to *hide* the top number and just show the denominator... D'oh! I riffed on the response rather than the original post… Bad Kieren! No cookie for you!! Sorry for the noise. Kieren. ___

Re: Hide time signature numerator?

2012-05-03 Thread Pavel Roskin
On Thu, 3 May 2012 10:00:41 -0500 David Nalesnik david.nales...@gmail.com wrote: You could also try something like this: \version 2.15.37 #(define time-signature-hide-numerator (lambda (grob) (let ((denom (number-string (cdr (ly:grob-property grob 'fraction)

Re: Hide time signature numerator?

2012-05-03 Thread David Nalesnik
Even simpler: #(define time-signature-hide-numerator (lambda (grob) (let ((denom (number-string (cdr (ly:grob-property grob 'fraction) (grob-interpret-markup grob (make-lower-markup 2 (make-number-markup denom)) So it is! -David

Re: Hide time signature numerator?

2012-05-03 Thread Owain Sutton
On 12:55, Thu 03 May 2012, David Nalesnik wrote: Date: Thu, 3 May 2012 12:55:42 -0500 From: David Nalesnik david.nales...@gmail.com Subject: Re: Hide time signature numerator? To: Pavel Roskin pro...@gnu.org Cc: James Worlton jworl...@gmail.com, Owain Sutton ow...@owainsutton.co.uk