bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Doc modification


From: Federico Bruni
Subject: Re: Doc modification
Date: Sat, 22 Feb 2014 22:00:53 +0100

Hi Pierre

first of all, thanks for the great work you are doing to update the LSR

2014-02-22 21:28 GMT+01:00 Pierre Perol-Schneider <
address@hidden>:

> Hi Bug Squad,
>
>
I think that you should rather say "Hi LSR editors" :-)
because the LSR must be managed in the LSR and not through the standard
code review.
I think that this is the right place to discuss these issues, but don't
expect any action from the Bug Squad. The LSR is not  in our list of duties.

Please be so kind to find a more relevant description for this snippet
> "Avoiding collisions with chord fingerings" :
>
> http://www.lilypond.org/doc/v2.18/Documentation/snippets/chords#chords-avoiding-collisions-with-chord-fingerings
>
> since v2.18 actually does string numbers and left hand fingering
> automatically avoiding beams and stems when applied to the individual notes
> of chords.
>

I'd change just a few words:
Fingerings and string numbers applied to individual notes will
automatically avoid beams and stems, but this is not true by default for
right hand fingerings applied to the individual notes of chords. The
following example shows how this default behavior can be overridden.


> Hereunder is the code I'll save for this snippet :
>
> \relative c' {
>
> \set fingeringOrientations = #'(up)
>
> \set stringNumberOrientations = #'(up)
>
> \set strokeFingerOrientations = #'(up)
>
> % Default behavior
>
> r8
>
> <f c'-5>8
>
> <f c'\5>8
>
> <f c'-\rightHandFinger #2 >8
>
>
Nitpick: I'd change the comments here


> % Corrected to avoid collisions
>
> r8
>
> <f c'-5>8
>
> <f c'\5>8
>
> \override StrokeFinger.add-stem-support = ##t
>
> <f c'-\rightHandFinger #2 >8
>
> }
>

this way:

  % No tweak needed
  r8
  <f c'-5>8
  <f c'\5>8
   % Corrected to avoid collisions
  \override StrokeFinger.add-stem-support = ##t
  <f c'-\rightHandFinger #2 >8


reply via email to

[Prev in Thread] Current Thread [Next in Thread]