Re: changing fingering position

2018-09-22 Thread Abraham Lee
Hi, Gianmaria!

On Sat, Sep 22, 2018 at 10:42 AM Gianmaria Lari 
wrote:

>
> On Sat, 22 Sep 2018 at 17:44, Thomas Morley 
> wrote:
>
>>
>>
>> 2018-09-22 17:29 GMT+02:00 Gianmaria Lari :
>>
>>> This code write some fingering on "b" pitch.
>>>
>>> \version "2.19.82"
>>> {b4\finger\markup {2 \circle 3 2} \prall}
>>>
>>>
>>> .. and here it is the result:
>>>
>>> [image: image.png]
>>>
>>> This is ok except the fact that the elements 2 (3) 2 are written not
>>> enough close each other.
>>> How can I make them more close like in the following example?
>>>
>>> \version "2.19.82"
>>> {b4-232 \prall}
>>>
>>>
>>> .. and here it is the result:
>>>
>>> [image: image.png]
>>>
>>> Thank you, g.
>>>
>>> P.S. On the accordion notation, a number inside a circle indicates a
>>> note to be played on the 4 or 5 row of the keyboard.
>>>
>>>
>>> Hi,
>>
>> like below?
>>
>> \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }
>>
>
That’s a great solution! Might I suggest a simpler one:

\markup \concat { 2 \circle 3 2 }

HTH,
Abraham

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


Re: changing fingering position

2018-09-22 Thread Torsten Hämmerle
Gianmaria Lari wrote
> \version "2.19.82"
> {b\finger \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }}

Hi Gianmaria,

An even more straight-forward (imho) option would be to simply concatenate
the three markup elements to get rid of the spaces:

{b4\finger\markup \concat {2 \circle 3 2} \prall}


Harm's solution, however, is perferable if you want to have some padding in
between: the gap can be varied by adjusting word-space.

All the best,
Torsten




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

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


Re: changing fingering position

2018-09-22 Thread Gianmaria Lari
On Sat, 22 Sep 2018 at 19:27, Abraham Lee 
wrote:

> Hi, Gianmaria!
>
> On Sat, Sep 22, 2018 at 10:42 AM Gianmaria Lari 
> wrote:
>
>>
>> On Sat, 22 Sep 2018 at 17:44, Thomas Morley 
>> wrote:
>>
>>>
>>>
>>> 2018-09-22 17:29 GMT+02:00 Gianmaria Lari :
>>>
 This code write some fingering on "b" pitch.

 \version "2.19.82"
 {b4\finger\markup {2 \circle 3 2} \prall}


 .. and here it is the result:

 [image: image.png]

 This is ok except the fact that the elements 2 (3) 2 are written not
 enough close each other.
 How can I make them more close like in the following example?

 \version "2.19.82"
 {b4-232 \prall}


 .. and here it is the result:

 [image: image.png]

 Thank you, g.

 P.S. On the accordion notation, a number inside a circle indicates a
 note to be played on the 4 or 5 row of the keyboard.


 Hi,
>>>
>>> like below?
>>>
>>> \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }
>>>
>>
> That’s a great solution! Might I suggest a simpler one:
>
> \markup \concat { 2 \circle 3 2 }
>

Thank you Abraham! Your solution also works perfectly and it's a bit
simpler I report both solution here:

\version "2.19.82"
{b\finger \markup \concat { 2 \circle 3 2 }}
{b\finger \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }}


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


Re: changing fingering position

2018-09-22 Thread Aaron Hill

On 2018-09-22 8:44 am, Thomas Morley wrote:

\markup \override #'(word-space . 0) \line { 2 \circle 3 2 }


Providing you do not want any spacing, it might be more succinct to 
write:



\markup \concat { 2 \circle 3 2 }


-- Aaron Hill

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


Re: changing fingering position

2018-09-22 Thread Gianmaria Lari
On Sat, 22 Sep 2018 at 17:44, Thomas Morley 
wrote:

>
>
> 2018-09-22 17:29 GMT+02:00 Gianmaria Lari :
>
>> This code write some fingering on "b" pitch.
>>
>> \version "2.19.82"
>> {b4\finger\markup {2 \circle 3 2} \prall}
>>
>>
>> .. and here it is the result:
>>
>> [image: image.png]
>>
>> This is ok except the fact that the elements 2 (3) 2 are written not
>> enough close each other.
>> How can I make them more close like in the following example?
>>
>> \version "2.19.82"
>> {b4-232 \prall}
>>
>>
>> .. and here it is the result:
>>
>> [image: image.png]
>>
>> Thank you, g.
>>
>> P.S. On the accordion notation, a number inside a circle indicates a note
>> to be played on the 4 or 5 row of the keyboard.
>>
>>
>> Hi,
>
> like below?
>
> \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }
>

Yes, exactly!

Here it is a complete example that compiles with your code:

\version "2.19.82"
{b\finger \markup \override #'(word-space . 0) \line { 2 \circle 3 2 }}


and here it is the resulting output

[image: image.png]


Thanks a lot Harm!!!
g.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: changing fingering position

2018-09-22 Thread Thomas Morley
2018-09-22 17:29 GMT+02:00 Gianmaria Lari :

> This code write some fingering on "b" pitch.
>
> \version "2.19.82"
> {b4\finger\markup {2 \circle 3 2} \prall}
>
>
> .. and here it is the result:
>
> [image: image.png]
>
> This is ok except the fact that the elements 2 (3) 2 are written not
> enough close each other.
> How can I make them more close like in the following example?
>
> \version "2.19.82"
> {b4-232 \prall}
>
>
> .. and here it is the result:
>
> [image: image.png]
>
> Thank you, g.
>
> P.S. On the accordion notation, a number inside a circle indicates a note
> to be played on the 4 or 5 row of the keyboard.
>
>
> Hi,

like below?

\markup \override #'(word-space . 0) \line { 2 \circle 3 2 }

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


changing fingering position

2018-09-22 Thread Gianmaria Lari
This code write some fingering on "b" pitch.

\version "2.19.82"
{b4\finger\markup {2 \circle 3 2} \prall}


.. and here it is the result:

[image: image.png]

This is ok except the fact that the elements 2 (3) 2 are written not enough
close each other.
How can I make them more close like in the following example?

\version "2.19.82"
{b4-232 \prall}


.. and here it is the result:

[image: image.png]

Thank you, g.

P.S. On the accordion notation, a number inside a circle indicates a note
to be played on the 4 or 5 row of the keyboard.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user