Re: Hide time signature in final partial measure

2019-04-15 Thread Thomas Liggett
On Sat, 13 Apr 2019 at 18:40, Michael Gerdau wrote: > > Hi Thomas, > > just realized, I did not answer your original question. > > If you want the TimeSignature change and just not show it, you need to \omit > it in the Voice instead of the NullVoice. > > Kind regards, > Michael > -- > Michael

Re: Hide time signature in final partial measure

2019-04-13 Thread Michael Gerdau
Hi Thomas, just realized, I did not answer your original question. If you want the TimeSignature change and just not show it, you need to \omit it in the Voice instead of the NullVoice. Kind regards, Michael -- Michael Gerdau email: m...@qata.de GPG-keys available on request or at public

Re: Hide time signature in final partial measure

2019-04-13 Thread Michael Gerdau
Hi Thomas, > In this score with a final partial measure (to balance the initial partial > measure), what is the best way to hide the time signature in the final > measure? The \omit Staff.TimeSignature has no apparent effect. Unless you have a specific reason to want the time signature change

Hide time signature in final partial measure

2019-04-12 Thread Thomas Liggett
Hi all, In this score with a final partial measure (to balance the initial partial measure), what is the best way to hide the time signature in the final measure? The \omit Staff.TimeSignature has no apparent effect. Thanks, Thomas %%% \version "2.19.82" global = { \time 4/4

hide time signature in markup command

2016-11-21 Thread Marc Mouries
i use a shorthand mark up command to insert music snippets into text. See below definition "WriteScore" I'd like to add a command to hide the time signature \override Staff.TimeSignature #'stencil = ##f In scheme the command should be something like this : (make-music 'OverrideProperty

How to hide time signature

2013-11-29 Thread Mr. Server Acim
Hello, We are writing a book about Harmony with my friend. At the begining chapter we will give basic music theory knowledges. I am trying to write a C Major Scale. The letters between the notes are the step extentions. I want to hide the Time Signature (8/1). But I can not. You will see the

Re: How to hide time signature

2013-11-29 Thread Marcos Press
Try here: http://lilypond.org/doc/v2.17/Documentation/notation/visibility-of-objects.html 2013/11/29 Mr. Server Acim servera...@ttmail.com Hello, We are writing a book about Harmony with my friend. At the begining chapter we will give basic music theory knowledges. I am trying to write a C

Re: How to hide time signature

2013-11-29 Thread magohq
\version 2.16.2 global = { \set Score.timing = ##f \override Staff.TimeSignature #'stencil = ##f } \new Staff \relative c' {\global c4 d e f g c d f g \bar || } -- View this message in context: http://lilypond.1069038.n5.nabble.com/How-to-hide-time-signature-tp154629p154633

Re: How to hide time signature

2013-11-29 Thread magohq
\version 2.16.2 global = { \set Score.timing = ##f \override Staff.TimeSignature #'stencil = ##f } \new Staff \relative c' {\global c4 d e f g c d f g \bar || } -- View this message in context: http://lilypond.1069038.n5.nabble.com/How-to-hide-time-signature-tp154629p154634

Re: How to hide time signature

2013-11-29 Thread Robert Schmaus
Watch out for the correct version - your code is 2.16 but the manual is 2.17, and a lot has changed between those versions. I'm not even sure if the \omit command actually existed in 2.16. I also think, the C-style dot-notation didn't existin 2.16. And one more thing: there's a difference in

Re: How to hide time signature

2013-11-29 Thread Mr. Server Acim
-to-hide-time-signature-tp154629p154634.html Sent from the User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user Thank you for your answer. But, I want to add

Re: How to hide time signature

2013-11-29 Thread David Kastrup
Robert Schmaus robert.schm...@web.de writes: Watch out for the correct version - your code is 2.16 but the manual is 2.17, and a lot has changed between those versions. I'm not even sure if the \omit command actually existed in 2.16. I also think, the C-style dot-notation didn't existin 2.16.

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

Re: hide time signature?

2006-01-26 Thread Mats Bengtsson
You will find a good hint in Sect. 9.2.1 Common tweaks. If you search the mailing list archives, I'm sure you will find some examples that do exactly what you ask for. /Mats [EMAIL PROTECTED] wrote: Is there a way to hide the time signature? Or am I just not seeing it in the user manual?

hide time signature?

2006-01-25 Thread yournewbestfriend
Is there a way to hide the time signature? Or am I just not seeing it in the user manual? Or am I just searching for the wrong thing. ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user