PDF portfolio of 2.19.33 docs

2015-12-08 Thread Nick Payne
A fully indexed portfolio of the 2.19.33 PDF docs is available at 
https://www.dropbox.com/s/737ry01f2n3k8f3/Lilydoc-2.19.33.pdf?dl=0 (39Mb).


Needs Adobe Reader for the indexing to work - I haven't found a 3rd 
party PDF viewer that can use the index in PDF portfolios.


Nick

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


Re: Settings for automatic beam slope

2015-12-08 Thread Andrew Bernard
Hi David,

Thanks. That’s a very illuminating article from Mr Spreadbury.

I gather, then, that beam-quanting is the method used by lilypond to achieve 
the cardinal rule of Ross:

"The placement of a beam follows the cardinal rule that when it falls within 
the staff, its ends must either sit [on], hang [from], or straddle a staff 
line, whether the beam is single or multiple."

This article also, I believe, answers my very question, why my sets of eight 
sixteenths mostly come out flat beamed.

"The beam is also horizontal if the notes in the group are in a repeated 
pattern of pitches;…”

These written out early baroque ornaments are obviously the type of repeating 
group referred to, so it looks like lilypond honours this convention also. The 
attached code illustrates the flattened beams. It does however raise the 
question as to why the second group with stems down have a slope, unless my 
eyes deceive me.

Andrew

— snip

\version "2.19.33"

{
  \clef treble
  g'16[ f' g' f' g' f' e' d']
  \stemDown
  g'16[ f' g' f' g' f' e' d']

}

—  snip


On 8/12/2015, 17:25, "David Wright"  wrote:


I presume this is to do with Ross's Cardinal Rule; have a look at
http://blog.steinberg.net/2015/03/development-diary-part-10/#more-928


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


custom right-hand fingering

2015-12-08 Thread Federico Bruni

Hi all

I'd like to create a custom right-hand fingering. Where should I look 
at?
I've tried looking at the definitions of finger and rightHandFinger in 
music-functions-init.ly, but I don't know how to create a new one.


I'm transcribing a piece from a book which uses this notation to 
specify tapping and the right-hand finger used to produce it:


Tm = tapping with middle finger
Ti = tapping with index finger

Thanks in advance
Federico




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


Re: custom right-hand fingering

2015-12-08 Thread Pierre Perol-Schneider
Hi Federico,

Maybe:

\version "2.19.33"

tm = \rightHandFinger \markup\tiny "Tm"
ti = \rightHandFinger \markup\tiny "Ti"

{
  c'\tm c'\ti
}

could be fine.

Cheers,
~Pierre

2015-12-08 19:36 GMT+01:00 Federico Bruni :

> Hi all
>
> I'd like to create a custom right-hand fingering. Where should I look at?
> I've tried looking at the definitions of finger and rightHandFinger in
> music-functions-init.ly, but I don't know how to create a new one.
>
> I'm transcribing a piece from a book which uses this notation to specify
> tapping and the right-hand finger used to produce it:
>
> Tm = tapping with middle finger
> Ti = tapping with index finger
>
> Thanks in advance
> Federico
>
>
>
>
> ___
> 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: custom right-hand fingering

2015-12-08 Thread Thomas Morley
2015-12-08 21:05 GMT+01:00 Thomas Morley :
> 2015-12-08 19:36 GMT+01:00 Federico Bruni :
>> Hi all
>>
>> I'd like to create a custom right-hand fingering. Where should I look at?
>> I've tried looking at the definitions of finger and rightHandFinger in
>> music-functions-init.ly, but I don't know how to create a new one.
>>
>> I'm transcribing a piece from a book which uses this notation to specify
>> tapping and the right-hand finger used to produce it:
>>
>> Tm = tapping with middle finger
>> Ti = tapping with index finger
>>
>> Thanks in advance
>> Federico
>
>
>
> {
>   \set strokeFingerOrientations = #'(up)
>   \override StrokeFinger.digit-names = ##("Tp" "Ti" "Tm" "Ta" "Tx")
>
>   c'\rightHandFinger #1
>   e'\rightHandFinger #2
>   g'\rightHandFinger #3
>   c''\rightHandFinger #4
> }
>
> Ofcourse there are shortcuts available for \rightHandFinger...
>
> HTH,
>   Harm

Also possible:

#(define (my-stroke-finger::calc-text grob)
  (let ((event (event-cause grob)))
(or (ly:event-property event 'text #f)
(vector-ref (ly:grob-property grob 'digit-names)
(1- (max 1
 (min 10 (ly:event-property event 'digit
{
  \set strokeFingerOrientations = #'(up)
  \override StrokeFinger.text = #my-stroke-finger::calc-text
  \override StrokeFinger.digit-names =
##("p" "i" "m" "a" "x" "Tp" "Ti" "Tm" "Ta" "Tx")

  c'\rightHandFinger #1
  e'\rightHandFinger #2
  g'\rightHandFinger #3
  c''\rightHandFinger #4
  e''\rightHandFinger #5
  c'\rightHandFinger #6
  e'\rightHandFinger #7
  g'\rightHandFinger #8
  c''\rightHandFinger #9
  e''\rightHandFinger #10
}


Cheers,
  Harm

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


Re: custom right-hand fingering

2015-12-08 Thread David Kastrup
Thomas Morley  writes:

> Also possible:
>
> #(define (my-stroke-finger::calc-text grob)
>   (let ((event (event-cause grob)))
> (or (ly:event-property event 'text #f)
> (vector-ref (ly:grob-property grob 'digit-names)
> (1- (max 1
>  (min 10 (ly:event-property event 'digit

Now that's just stupid.  Issue 4686.

git cl status output:
[...]
Current branch: issue4686
Tracker issue: 4686
Traceback (most recent call last):
  File "/home/dak/bin/git-cl", line 628, in 
sys.exit(main(sys.argv))
  File "/home/dak/bin/git-cl", line 622, in main
return func(argv[2:])
  File "/home/dak/bin/git-cl", line 188, in CmdStatus
print 'Tracker issue:', cl.GetTrackerIssue(), '(%s)' % cl.GetTrackerURL()
  File "/usr/local/tmp/git-cl/cl_settings.py", line 217, in GetTrackerURL
return TrackerURL(self.GetTrackerIssue())
NameError: global name 'TrackerURL' is not defined

Oops?  That's the newest git-cl I think.

-- 
David Kastrup

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


Re: custom right-hand fingering

2015-12-08 Thread Thomas Morley
2015-12-08 19:36 GMT+01:00 Federico Bruni :
> Hi all
>
> I'd like to create a custom right-hand fingering. Where should I look at?
> I've tried looking at the definitions of finger and rightHandFinger in
> music-functions-init.ly, but I don't know how to create a new one.
>
> I'm transcribing a piece from a book which uses this notation to specify
> tapping and the right-hand finger used to produce it:
>
> Tm = tapping with middle finger
> Ti = tapping with index finger
>
> Thanks in advance
> Federico



{
  \set strokeFingerOrientations = #'(up)
  \override StrokeFinger.digit-names = ##("Tp" "Ti" "Tm" "Ta" "Tx")

  c'\rightHandFinger #1
  e'\rightHandFinger #2
  g'\rightHandFinger #3
  c''\rightHandFinger #4
}

Ofcourse there are shortcuts available for \rightHandFinger...

HTH,
  Harm

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


Re: custom right-hand fingering

2015-12-08 Thread Federico Bruni
Il giorno mar 8 dic 2015 alle 19:48, Pierre Perol-Schneider 
 ha scritto:

Maybe:

\version "2.19.33"

tm = \rightHandFinger \markup\tiny "Tm"
ti = \rightHandFinger \markup\tiny "Ti"

{
  c'\tm c'\ti
}

could be fine.


This is perfect, thanks!

For the records, I made the T bold, as in my book reference:
tm = \rightHandFinger \markup\tiny\concat{ \bold T m }
ti = \rightHandFinger \markup\tiny\concat{ \bold T i }


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


Re: Lower-case letter rehearsal marks

2015-12-08 Thread Brian Barker

At 17:08 08/12/2015 -0700, Abraham Lee wrote:
I am trying to figure out how to make rehearsal mark letters be 
their lower-case counterparts. I've read through all the options in 
"scm/translation-functions.scm" to see what's currently available 
and it doesn't seem to be an option at the moment.


I realize this isn't the standard way of notating rehearsal marks, 
but let's lay that aside for a moment. Any ideas on could I do this?


\mark \markup \box \bold "a"
\mark \markup \box \bold "b"
...

Brian Barker 



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


Lower-case letter rehearsal marks

2015-12-08 Thread Abraham Lee
Greetings, All!

I am trying to figure out how to make rehearsal mark letters be their
lower-case counterparts. I've read through all the options in
"scm/translation-functions.scm" to see what's currently available and it
doesn't seem to be an option at the moment.

I realize this isn't the standard way of notating rehearsal marks, but
let's lay that aside for a moment. Any ideas on could I do this? Thanks!

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


Microtonal notation - arrows up and down

2015-12-08 Thread Luca Danieli
Hello everybody,
I found out very few about arrows down and up for microtonal notation.Neither a 
quick research on the mailing-list has shown many results.
I found the best example of it in the following page but I hoped to find some 
more information on how to set up arrows down and up.
http://lsr.di.unimi.it/LSR/Search?q=microtonal
Can someone lead me to the right tutorial, if there is any?
Luca
  ___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user