Re: emmentaler font codes

2014-05-17 Thread tisimst
Ah! That would make sense.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/emmentaler-font-codes-tp162465p162519.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: emmentaler font codes

2014-05-16 Thread tisimst
Richard Shann-2 wrote
 I have searched through the emmentaler font from U+E100 to U+E27C and
 cannot see the glyph which is typeset via
 
 ^\markup {\musicglyph #ties.lyric.default}
 
 this would do the job well enough if I could find it...

Not sure why you can't find it. It's unicode address is U+E18D. I'm able to
get it to appear by doing exactly what you said.

-Abraham



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/emmentaler-font-codes-tp162465p162491.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: Collision between notehead and slur

2014-05-01 Thread tisimst
If you ever need to tweak the positions of a tie, slur, or phrasing slur, you
can use the awesome \shape command, like in  this post
http://lilypond.1069038.n5.nabble.com/Ties-Slurs-and-Voices-Again-tp161804p161833.html
 
.

For usage details, see the  official documentation
http://www.lilypond.org/doc/v2.18/Documentation/source/Documentation/notation/modifying-shapes
  
on the topic (should work for any version =2.16).

Happy Engraving,
Abraham




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Collision-between-notehead-and-slur-tp161982p161990.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: 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: Ties, Slurs, and Voices Again!

2014-04-24 Thread tisimst
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 ) 
}
   {
  ef'4 ~ ef'8 
}
  
}
  
  r8
}

The \shape procedure takes a scheme list of four (xi . yi) control point
pairs, which appear to be applied as offsets to what LilyPond comes up with
on its own. Thus, the first control point offset (0.9 . 1.8) shifts the
x-coordinate +0.9 staff-spaces and shifts the y-coordinate +1.8 staff-spaces
up (the default slur is actually the lowest line, if you didn't know that).
The other points follow the same philosophy, and don't forget the Slur at
the end of the line. 

I simply played with the numbers until it looked okay to me (sorry the image
quality isn't so good, but you get the idea):

http://lilypond.1069038.n5.nabble.com/file/n161812/slur-example-fix.png 

I didn't attempt to change the slur for the top voice, but that could use a
small adjustment on the right end, too. Give that a try!

-Abraham



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Ties-Slurs-and-Voices-Again-tp161804p161812.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


<    2   3   4   5   6   7