Re: Move (monophonic) note horizontally

2014-04-25 Thread Pierre Perol-Schneider
2014-04-24 12:11 GMT+02:00 Urs Liska u...@openlilylib.org:

 Hi,


Hi Urs ,

I'm trying to shift a note horizontally to accomodate ugly spacing
 (attachment 1).


Try this :


\version 2.17.3



\new Staff = RH

\with { \omit Clef }

{

\time 5/4

c''2

}

\new Staff = LH

\with { \omit Clef }

{

\time 5/4

\clef F

\stemUp

r16

\once\override NoteColumn.X-offset = #10 % or #-1 in your case

a,! \change Staff = RH \once\stemDown c'!

\change Staff = LH b! s4

}



%%%


HTH,

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


Re: Collision between tuplet bracket and accidental

2014-04-25 Thread Pierre Perol-Schneider
2014-04-25 7:29 GMT+02:00 James Harkins jamshar...@gmail.com:

I have a case (attached) where LilyPond doesn't leave enough space for
 an accidental.


Try :

%%
\version 2.18.2
\relative c {
\cadenzaOn
\tuplet 3/2 { f8 [ d' ] e4 d8 [ e ] }
\once\override NoteColumn.X-offset = #1
b''!8 g,4
}




HTH,

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


Re: paper-piano-roll-2ly

2014-04-25 Thread Pierre Perol-Schneider
Nice work for sure,
Cheers,
~Pierre

2014-04-25 7:34 GMT+02:00 Jan Nieuwenhuizen jann...@gnu.org:

 Hi,

 Have you seen this?

 http://zulko.github.io/blog/2014/02/12/transcribing-piano-rolls/

 Greetings, Jan

 --
 Jan Nieuwenhuizen jann...@gnu.org | GNU LilyPond http://lilypond.org
 Freelance IT http://JoyofSource.com | AvatarĀ®  http://AvatarAcademy.nl

 ___
 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: [SPAM] Re: Move (monophonic) note horizontally

2014-04-25 Thread Urs Liska


Thanks, that was it!

Strange that I tried around with a couple of things and missed the right 
one ...


Urs


Am 25.04.2014 09:50, schrieb Pierre Perol-Schneider:

2014-04-24 12:11 GMT+02:00 Urs Liska u...@openlilylib.org:


Hi,



Hi Urs ,

I'm trying to shift a note horizontally to accomodate ugly spacing

(attachment 1).



Try this :


\version 2.17.3



\new Staff = RH

\with { \omit Clef }

{

\time 5/4

c''2

}

\new Staff = LH

\with { \omit Clef }

{

\time 5/4

\clef F

\stemUp

r16

\once\override NoteColumn.X-offset = #10 % or #-1 in your case

a,! \change Staff = RH \once\stemDown c'!

\change Staff = LH b! s4

}





%%%


HTH,

~Pierre



___
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: Move (monophonic) note horizontally

2014-04-25 Thread Phil Burfitt
- Original Message - 
From: Urs Liska u...@openlilylib.org

To: lilypond-user lilypond-user@gnu.org
Sent: Thursday, April 24, 2014 11:11 AM
Subject: Move (monophonic) note horizontally



Hi,

I'm trying to shift a note horizontally to accomodate ugly spacing 
(attachment 1).


It seems overriding force-hshift does only work for polyphonic 
constellations so it doesn't make any effect here.


Next thing I tried is to manually shift everything by overriding 
extra-offset. This worked for the NoteHead, the Stem and the Accidental, 
but the ledger line remains in its position (attachment 2).


Can you tell me how I can manually shift that c' slightly to the left?

Urs

PS: In case it matters: I have to do this with LP 2.17.3



Does NoteHead.extra-spacing-width work?


Phil.



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


Re: [SPAM] Re: Move (monophonic) note horizontally

2014-04-25 Thread Urs Liska

Am 25.04.2014 10:53, schrieb Phil Burfitt:

Does NoteHead.extra-spacing-width work?


No, I had tried that already, and it didn't have any effect (surprisingly)

Urs

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


Re: Ties, Slurs, and Voices Again!

2014-04-25 Thread David Nalesnik
Hi,

On Thu, Apr 24, 2014 at 2:41 PM, tisimst tisi...@gmail.com wrote:

 Knute,

 I tried some of the more simple tweaks, but they didn't seem to give me
 what
 you wanted. However, here's a *slightly* more advanced tweak that I got to
 work:

 \version 2.18.2
 \language english

 {
   \time 5/4
   \key af \major
   af df' f'4 g bf ef' c' ef' af'
   
 {
   bf'8 ( [ ef'' ] c'' )
 }
 \\
 {
   
 {
   \shape #'((0.9 . 1.8) (0.6 . 2.1) (0.3 . 2.1) (0 . 1.8)) Slur  %
 -- make the changes here
   g'4 ( af'8 )
 }


You can also use a tweak syntax for \shape.  Replace the { } block above
with

 {

  g'4-\shape #'((0.9 . 1.8) (0.6 . 2.1) (0.3 . 2.1) (0 . 1.8)) ( af'8 )

}


   {
   ef'4 ~ ef'8
 }
   
 }
   
   r8
 }


 The other points follow the same philosophy, and don't forget the Slur at
 the end of the line.


Easy to forget.  The tweak syntax is helpful here.

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


Re: Filling empty space in inline lyrics with dots?

2014-04-25 Thread Phil Holmes
- Original Message - 
From: tapani simoj...@yahoo.com

To: lilypond-user@gnu.org
Sent: Tuesday, November 26, 2013 8:24 PM
Subject: Filling empty space in inline lyrics with dots?



I frequently typeset psalm chants, where the number of words per reciting
note vary from one verse to another. To help the singers keep their eyes 
on
the correct line of lyrics, I would like to fill empty space with a line 
of

dots, like in the index of a book, like so:

The earth is the Lord's, and the. fullness 
thereof,

The world and those who
dwell therein.

I've googled to my heart's content but haven't found a solution. Is there
one?

I'm very much an uninformed end-user, unfamiliar with the workings of
Lilypond beyond the standard commands.

Many thanks.
Tapani


This is almost always done using lyric extenders - lines rather than dots. 
See


http://lilypond.org/doc/v2.18/Documentation/notation/common-notation-for-vocal-music#extenders-and-hyphens

--
Phil Holmes 



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


Re: Ties, Slurs, and Voices Again!

2014-04-25 Thread tisimst
David Nalesnik-2 wrote
 You can also use a tweak syntax for \shape.  Replace the { } block above
 with
 
 {
   g'4-\shape #'((0.9 . 1.8) (0.6 . 2.1) (0.3 . 2.1) (0 . 1.8)) ( af'8 )
 }
 alt=example of adjusting slur position with simultaneous other voices
 tie
 Easy to forget.  The tweak syntax is helpful here.
 
 HTH,
 David

Great suggestion, David. Following this, here's how I would tweak the above
snippet entirely (including the top slur):

\version 2.18.2
\language english

{
  \time 5/4
  \key af \major
  af df' f'4 g bf ef' c' ef' af'
  
{
  bf'8-\shape #'((0 . 0) (0 . 0) (-0.25 . -0.25) (-0.5 . -0.5)) ( [ ef''
] c'' )
}
\\
{
  
{
  g'4-\shape #'((0.9 . 1.8) (0.6 . 2.1) (0.3 . 2.1) (0 . 1.8)) (
af'8 )
}
{
  ef'4 ~ ef'8
}
  
}
  
  r8
}

which gives you (better resolution this time):

http://lilypond.1069038.n5.nabble.com/file/n161833/polyphonic-ties-and-slurs.png
 

-Abraham



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Ties-Slurs-and-Voices-Again-tp161804p161833.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: Whiteout box function by Thomas Morley / need help

2014-04-25 Thread Karol Majewski
Hi Harm. This is quite an impressive piece of code! So far everything is fine 
:-) Thank you very much. It should be added to LSR, I think.




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