Equal spacing of notes in a bar

2015-08-24 Thread William Marchant
I have looked though the documentation without finding what I need. The 
attached code gives me a triplet whose notes are spaced according to the 
words.  I would like to equalize  the spacing between the notes.  Is 
there a snippet I have missed, or some technique that will provide this?

Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
\tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
\new Staff <<
  \new Voice = "Song" {
\global
\melody
  }
  \new Lyrics \lyricsto "Song" {
\VerseOne
  }
>>
  >>
  \layout {
\context {
  \Score
}
  }
}


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


Re: Equal spacing of notes in a bar

2015-08-24 Thread Simon Albrecht

Hi Bill,

‘proportional notation’ is the magic word: 
.


HTH, Simon

Am 24.08.2015 um 20:54 schrieb William Marchant:
I have looked though the documentation without finding what I need. 
The attached code gives me a triplet whose notes are spaced according 
to the words.  I would like to equalize  the spacing between the 
notes.  Is there a snippet I have missed, or some technique that will 
provide this?

Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
\tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
\new Staff <<
  \new Voice = "Song" {
\global
\melody
  }
  \new Lyrics \lyricsto "Song" {
\VerseOne
  }
>>
  >>
  \layout {
\context {
  \Score
}
  }
}


___
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: Equal spacing of notes in a bar

2015-08-24 Thread tisimst
How about this: 
http://www.lilypond.org/doc/v2.18/Documentation/notation/proportional-notation

- Abraham

On 8/24/2015 12:55 PM, William Marchant [via Lilypond] wrote:
> I have looked though the documentation without finding what I need. The
> attached code gives me a triplet whose notes are spaced according to the
> words.  I would like to equalize  the spacing between the notes.  Is
> there a snippet I have missed, or some technique that will provide this?
> Bill
>
> \version "2.18.2"
> global = {
>\language "english"
>\key bf \major
>\time 3/4
> }
> melody = \relative c' {
>  \tuplet 3/2 { bf8 c d }  c2 |
> }
>VerseOne = \lyricmode {
>Give me a big
>}
>   \score {
>\new ChoirStaff <<
>  \new Staff <<
>\new Voice = "Song" {
>  \global
>  \melody
>}
>\new Lyrics \lyricsto "Song" {
>  \VerseOne
>}
>  >>
>>>
>\layout {
>  \context {
>\Score
>  }
>}
> }
>
>
> ___
> lilypond-user mailing list
> [hidden email] 
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>
>
> --------------------
> If you reply to this email, your message will be added to the 
> discussion below:
> http://lilypond.1069038.n5.nabble.com/Equal-spacing-of-notes-in-a-bar-tp180075.html
>  
>
> To start a new topic under User, email ml-node+s1069038n...@n5.nabble.com
> To unsubscribe from Lilypond, click here 
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=2&code=dGlzaW1zdC5saWx5cG9uZEBnbWFpbC5jb218Mnw4MzU3Njg3MDU=>.
> NAML 
> <http://lilypond.1069038.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>  
>





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Equal-spacing-of-notes-in-a-bar-tp180075p180078.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


Re: Equal spacing of notes in a bar

2015-08-24 Thread William Marchant
Thanks to Simon and Abraham.  I found the quoted reference on my own, 
but I need something which can be applied to  several single bars 
throughout the music.  It is the lyrics which are distorting just a few 
bars.  I had hoped there would be a snippet I am unable to find.  Is 
there one?  TIA.

Bill

On 15-08-24 03:56 PM, Simon Albrecht wrote:

Hi Bill,

‘proportional notation’ is the magic word: 
.


HTH, Simon

Am 24.08.2015 um 20:54 schrieb William Marchant:
I have looked though the documentation without finding what I need. 
The attached code gives me a triplet whose notes are spaced according 
to the words.  I would like to equalize  the spacing between the 
notes.  Is there a snippet I have missed, or some technique that will 
provide this?

Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
\tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
\new Staff <<
  \new Voice = "Song" {
\global
\melody
  }
  \new Lyrics \lyricsto "Song" {
\VerseOne
  }
>>
  >>
  \layout {
\context {
  \Score
}
  }
}


___
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: Equal spacing of notes in a bar

2015-08-24 Thread David Nalesnik
On Mon, Aug 24, 2015 at 7:51 PM, William Marchant 
wrote:

> Thanks to Simon and Abraham.  I found the quoted reference on my own, but
> I need something which can be applied to  several single bars throughout
> the music.  It is the lyrics which are distorting just a few bars.  I had
> hoped there would be a snippet I am unable to find.  Is there one?  TIA.
> Bill


Maybe \newSpacingSection would serve?

http://lilypond.org/doc/v2.18/Documentation/notation/new-spacing-area

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


Re: Equal spacing of notes in a bar

2015-08-25 Thread Simon Albrecht

Am 25.08.2015 um 02:51 schrieb William Marchant:
Thanks to Simon and Abraham.  I found the quoted reference on my own, 
but I need something which can be applied to  several single bars 
throughout the music.  It is the lyrics which are distorting just a 
few bars.  I had hoped there would be a snippet I am unable to find.  
Is there one?  TIA.

Bill
There are several issues in our tracker concerned with the shortcomings 
of Lily’s current behaviour, since indeed note spacing should only in 
extreme cases by distorted by lyrics. What can be done?

– Choose a narrower font for lyrics.
– Play with LyricText.self-alignment-X, e.g. (gross exaggeration :-))
%%%
\version "2.18.2"

selfAl = #(define-music-function (parser location num) (number?)
#{ \once \override LyricText . self-alignment-X  = $num #})

mus = { g'8 f'8 e'8 }
text = \lyricmode { \selfAl 1.2 straight straight \selfAl #-1 straight }

\score {
  <<
\mus
\addlyrics \text
  >>
}
%

– choose a wider horizontal spacing in general, either through the 
methods in 


– or by ‘brute force’: something like \paper { system-count = 10 }.

HTH, Simon



On 15-08-24 03:56 PM, Simon Albrecht wrote:

Hi Bill,

‘proportional notation’ is the magic word: 
.


HTH, Simon

Am 24.08.2015 um 20:54 schrieb William Marchant:
I have looked though the documentation without finding what I need. 
The attached code gives me a triplet whose notes are spaced 
according to the words.  I would like to equalize  the spacing 
between the notes.  Is there a snippet I have missed, or some 
technique that will provide this?

Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
\tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
\new Staff <<
  \new Voice = "Song" {
\global
\melody
  }
  \new Lyrics \lyricsto "Song" {
\VerseOne
  }
>>
  >>
  \layout {
\context {
  \Score
}
  }
}


___
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



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


Re: Equal spacing of notes in a bar

2015-08-25 Thread William Marchant

Thanks David.  That looks like a solution for me.
Bill

On 15-08-24 10:13 PM, David Nalesnik wrote:



On Mon, Aug 24, 2015 at 7:51 PM, William Marchant 
mailto:wmarch...@eastlink.ca>> wrote:


Thanks to Simon and Abraham.  I found the quoted reference on my
own, but I need something which can be applied to  several single
bars throughout the music.  It is the lyrics which are distorting
just a few bars.  I had hoped there would be a snippet I am unable
to find.  Is there one?  TIA.
Bill


Maybe \newSpacingSection would serve?

http://lilypond.org/doc/v2.18/Documentation/notation/new-spacing-area

HTH,
David



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


Re: Equal spacing of notes in a bar

2015-08-25 Thread William Marchant

Very many thanks, Simon
Bill

On 15-08-25 08:18 AM, Simon Albrecht wrote:

Am 25.08.2015 um 02:51 schrieb William Marchant:
Thanks to Simon and Abraham.  I found the quoted reference on my own, 
but I need something which can be applied to  several single bars 
throughout the music.  It is the lyrics which are distorting just a 
few bars.  I had hoped there would be a snippet I am unable to find.  
Is there one?  TIA.

Bill
There are several issues in our tracker concerned with the 
shortcomings of Lily’s current behaviour, since indeed note spacing 
should only in extreme cases by distorted by lyrics. What can be done?

– Choose a narrower font for lyrics.
– Play with LyricText.self-alignment-X, e.g. (gross exaggeration :-))
%%%
\version "2.18.2"

selfAl = #(define-music-function (parser location num) (number?)
#{ \once \override LyricText . self-alignment-X  = $num #})

mus = { g'8 f'8 e'8 }
text = \lyricmode { \selfAl 1.2 straight straight \selfAl #-1 straight }

\score {
  <<
\mus
\addlyrics \text
  >>
}
%

– choose a wider horizontal spacing in general, either through the 
methods in 


– or by ‘brute force’: something like \paper { system-count = 10 }.

HTH, Simon



On 15-08-24 03:56 PM, Simon Albrecht wrote:

Hi Bill,

‘proportional notation’ is the magic word: 
.


HTH, Simon

Am 24.08.2015 um 20:54 schrieb William Marchant:
I have looked though the documentation without finding what I need. 
The attached code gives me a triplet whose notes are spaced 
according to the words.  I would like to equalize  the spacing 
between the notes.  Is there a snippet I have missed, or some 
technique that will provide this?

Bill

\version "2.18.2"
global = {
  \language "english"
  \key bf \major
  \time 3/4
}
melody = \relative c' {
\tuplet 3/2 { bf8 c d }  c2 |
}
  VerseOne = \lyricmode {
  Give me a big
  }
 \score {
  \new ChoirStaff <<
\new Staff <<
  \new Voice = "Song" {
\global
\melody
  }
  \new Lyrics \lyricsto "Song" {
\VerseOne
  }
>>
  >>
  \layout {
\context {
  \Score
}
  }
}


___
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







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