How to omit tuplet range indicator

2015-06-04 Thread Venus' Wink
Hi,

Under some condition, at both sides of number attached tuplet,
letter-L-like lines are put to indicate the range of the tuplet,
you know.

How could I omit them?

For example:

\version "2.18.2"
\relative c' {

c8 \tuplet 3/2 {d16 e f}
}

yields output.png of the attachments.

I would like to get purpose.png.

Thanks
Venus' Wink


FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
Check it out at http://www.inbox.com/earth
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to omit tuplet range indicator

2015-06-04 Thread Ralph Palmer
On Thu, Jun 4, 2015 at 8:47 PM, Venus' Wink  wrote:

> Hi,
>
> Under some condition, at both sides of number attached tuplet,
> letter-L-like lines are put to indicate the range of the tuplet,
> you know.
>
> How could I omit them?
>
> For example:
>
> \version "2.18.2"
> \relative c' {
>
> c8 \tuplet 3/2 {d16 e f}
> }
>
> yields output.png of the attachments.
>
> I would like to get purpose.png.
>
> Thanks
> Venus' Wink


Greetings, Venus' Wink -

Please take a look at

Controlling tuplet bracket visibility

in the LilyPond Snippet Repository :

http://lsr.di.unimi.it/LSR/Item?id=337

That snippet addresses your problem.

All the best,

Ralph

-- 
Ralph Palmer
Brattleboro, VT
USA
palmer.r.vio...@gmail.com
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to omit tuplet range indicator

2015-06-04 Thread Venus' Wink





Hi all,These are OK.Thanks a lot.Venus' Wink> -Original Message-> From: andrew.bern...@gmail.com> Sent: Fri, 5 Jun 2015 11:12:23 +1000> To: venuswi...@inbox.com> Subject: RE: How to omit tuplet range indicator> > Hi,> > \hide TupletBracket> > Andrew-Original Message-From: palmer.r.vio...@gmail.comSent: Thu, 4 Jun 2015 21:18:39 -0400To: venuswi...@inbox.comSubject: Re: How to omit tuplet range indicatorOn Thu, Jun 4, 2015 at 8:47 PM, Venus' Wink <venuswi...@inbox.com> wrote:Hi,

Under some condition, at both sides of number attached tuplet,
letter-L-like lines are put to indicate the range of the tuplet,
you know.

How could I omit them?

For example:

\version "2.18.2"
\relative c' {

    c8 \tuplet 3/2 {d16 e f}
}

yields output.png of the attachments.

I would like to get purpose.png.

Thanks
Venus' WinkGreetings, Venus' Wink -Please take a look at Controlling tuplet bracket visibility in the LilyPond Snippet Repository : http://lsr.di.unimi.it/LSR/Item?id=337That snippet addresses your problem.All the best,Ralph -- Ralph PalmerBrattleboro, VTUSApalmer.r.vio...@gmail.com





Free 3D Earth Screensaver
Watch the Earth right on your desktop! Check it out at www.inbox.com/earth





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


Re: How to omit tuplet range indicator

2015-06-04 Thread Venus' Wink





Hi Ralph,Thanks for your kind information.I'm sorry but your link hasn't seemed to lead to user list in my native.As for me, up to now many questions of mine have been even solved enough by kind English readers.Thanks againVenus' Wink-Original Message-From: palmer.r.vio...@gmail.comSent: Thu, 4 Jun 2015 22:22:41 -0400To: venuswi...@inbox.comSubject: Re: How to omit tuplet range indicatorOn Thu, Jun 4, 2015 at 9:31 PM, Venus' Wink  wrote:




Hi all,These are OK.Thanks a lot.Venus' WinkGreetings again, Venus' Wink -From your email, I would guess that English is not your native language. Did you know that there are a number of non-English LilyPond user lists? For example, Spanish, French, and German. If you are interested, please go to :http://lilypond.org/community.htmland scroll down to the bottom of the page (not far), where you will see links to "Other languages".All the best,Ralph -- Ralph PalmerBrattleboro, VTUSApalmer.r.vio...@gmail.com










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


RE: How to omit tuplet range indicator

2015-06-04 Thread Mark Stephen Mrotek
Venus,

To eliminate the bracket:
\override TupletBracket #'bracket-visibility = ##f

To eliminate the number:
\override TupletNumber #'stencil = ##f

Mark

-Original Message-
From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org
[mailto:lilypond-user-bounces+carsonmark=ca.rr@gnu.org] On Behalf Of
Venus' Wink
Sent: Thursday, June 04, 2015 5:47 PM
To: lilypond-user
Subject: How to omit tuplet range indicator

Hi,

Under some condition, at both sides of number attached tuplet, letter-L-like
lines are put to indicate the range of the tuplet, you know.

How could I omit them?

For example:

\version "2.18.2"
\relative c' {

c8 \tuplet 3/2 {d16 e f}
}

yields output.png of the attachments.

I would like to get purpose.png.

Thanks
Venus' Wink


FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
Check it out at http://www.inbox.com/earth


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


Re: How to omit tuplet range indicator

2015-06-04 Thread Pierre Perol-Schneider
Hi VW,

Try:

\version "2.18.2"
\relative c' {
\omit TupletBracket
c8 \tuplet 3/2 { d16 e f }
%% possibly:
\undo\omit TupletBracket
}


Cheers,
Pierre

2015-06-05 2:47 GMT+02:00 Venus' Wink :

> Hi,
>
> Under some condition, at both sides of number attached tuplet,
> letter-L-like lines are put to indicate the range of the tuplet,
> you know.
>
> How could I omit them?
>
> For example:
>
> \version "2.18.2"
> \relative c' {
>
> c8 \tuplet 3/2 {d16 e f}
> }
>
> yields output.png of the attachments.
>
> I would like to get purpose.png.
>
> Thanks
> Venus' Wink
>
> 
> FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
> Check it out at http://www.inbox.com/earth
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: How to omit tuplet range indicator

2015-06-05 Thread Venus' Wink





Hi all,I'm surprized how many way to realize it.Thanks a lotVenus' Wink> -Original Message-> From: carsonm...@ca.rr.com> Sent: Thu, 4 Jun 2015 20:45:42 -0700> To: venuswi...@inbox.com, lilypond-user@gnu.org> Subject: RE: How to omit tuplet range indicator> > Venus,> > To eliminate the bracket:> \override TupletBracket #'bracket-visibility = ##f> > To eliminate the number:> \override TupletNumber #'stencil = ##f> > Mark> -Original Message-From: pierre.schneider.pa...@gmail.comSent: Fri, 5 Jun 2015 08:54:41 +0200To: venuswi...@inbox.comSubject: Re: How to omit tuplet range indicatorHi VW,Try:\version "2.18.2"\relative c' {    \omit TupletBracket    c8 \tuplet 3/2 { d16 e f }%% possibly:    \undo\omit TupletBracket}Cheers,Pierre2015-06-05 2:47 GMT+02:00 Venus' Wink <venuswi...@inbox.com>:Hi,

Under some condition, at both sides of number attached tuplet,
letter-L-like lines are put to indicate the range of the tuplet,
you know.

How could I omit them?

For example:

\version "2.18.2"
\relative c' {

    c8 \tuplet 3/2 {d16 e f}
}

yields output.png of the attachments.

I would like to get purpose.png.

Thanks
Venus' Wink


FREE 3D EARTH SCREENSAVER - Watch the Earth right on your desktop!
Check it out at http://www.inbox.com/earth
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user










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


RE: How to omit tuplet range indicator

2015-06-05 Thread Andrew Bernard
Dear Venus' Wink,

 

Perl has a motto: TMTOWTDI. There's more than one way to do it! Lilypond is
similar, you will find.

 

Cheerio!

Andrew

 

 

 

From: lilypond-user-bounces+andrew.bernard=gmail@gnu.org
[mailto:lilypond-user-bounces+andrew.bernard=gmail@gnu.org] On Behalf Of
Venus' Wink
Sent: Friday, 5 June 2015 6:11 PM
To: lilypond-user
Subject: Re: How to omit tuplet range indicator



I'm surprized how many way to realize it.

Thanks a lot
Venus' Wink

 

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


Re: How to omit tuplet range indicator

2015-06-05 Thread Noeck
The answer was already given, I just want to point out how close the
answer is to the question:

Question:
> lines to indicate the range of the tuplet ...
> How could I omit them?

Answer:
\omit TupletBracket

Cheers,
Joram

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


Re: How to omit tuplet range indicator

2015-06-05 Thread Kieren MacMillan
Hello,

> Under some condition, at both sides of number attached tuplet,
> letter-L-like lines are put to indicate the range of the tuplet,
> How could I omit them?

\omit TupletBracket

;)

You can also add \once, if you want to hide only one bracket (i.e., the one 
which starts on the musical moment immediately following the command):

\version "2.18.2"

\relative c' {
  c8 \tuplet 3/2 { d16 e f }
  c8 \tuplet 3/2 { d16 e f }
}

\relative c' {
  c8 \once \omit TupletBracket \tuplet 3/2 { d16 e f }
  c8 \tuplet 3/2 { d16 e f }
}

\relative c' {
  \omit TupletBracket
  c8 \tuplet 3/2 { d16 e f }
  c8 \tuplet 3/2 { d16 e f }
}

Hope this helps!
Kieren.



Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: How to omit tuplet range indicator

2015-06-05 Thread Venus' Wink
Hi all,

Question:
> lines to indicate the range of the tuplet ...
> How could I omit them?

Answer:
\hide TupletBracket

or
\override TupletBracket #'bracket-visibility = ##f
http://lsr.di.unimi.it/LSR/Item?id=337

or
[\once] \omit TupletBracket

Thanks
Venus' Wink

> -Original Message-
> From: kieren_macmil...@sympatico.ca
> Sent: Fri, 5 Jun 2015 07:20:42 -0400
> To: venuswi...@inbox.com
> Subject: Re: How to omit tuplet range indicator
> 
> Hello,
> 
>> Under some condition, at both sides of number attached tuplet,
>> letter-L-like lines are put to indicate the range of the tuplet,
>> How could I omit them?
> 
> \omit TupletBracket
> 
> ;)
> 
> You can also add \once, if you want to hide only one bracket (i.e., the
> one which starts on the musical moment immediately following the
> command):
> 
> \version "2.18.2"
> 
> \relative c' {
>   c8 \tuplet 3/2 { d16 e f }
>   c8 \tuplet 3/2 { d16 e f }
> }
> 
> \relative c' {
>   c8 \once \omit TupletBracket \tuplet 3/2 { d16 e f }
>   c8 \tuplet 3/2 { d16 e f }
> }
> 
> \relative c' {
>   \omit TupletBracket
>   c8 \tuplet 3/2 { d16 e f }
>   c8 \tuplet 3/2 { d16 e f }
> }
> 
> Hope this helps!
> Kieren.
> 
> 
> 
> Kieren MacMillan, composer
> ‣ website: www.kierenmacmillan.info
> ‣ email: i...@kierenmacmillan.info


FREE 3D MARINE AQUARIUM SCREENSAVER - Watch dolphins, sharks & orcas on your 
desktop!
Check it out at http://www.inbox.com/marineaquarium



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


Re: How to omit tuplet range indicator

2015-06-05 Thread Kieren MacMillan
Hi Venus,

> \hide TupletBracket
> or
> [\once] \omit TupletBracket

Note that these do two different things, though it may be hard to tell…
\hide makes the bracket transparent, so that it cannot be seen but still 
affects [horizontal and vertical] spacing if there are collisions.
\omit removes the bracket entirely, so that it has no effect on spacing.

Best,
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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