Solution for multiple simultaneous Text Spanners in a single voice?

2020-03-20 Thread dtsmarin
Does anyone know any elegant ways to add two or more Text Spanner without
using a separate voice?

I tried using the SustainPedalLineSpanner but I can't make the line to be
centered vertically with the text.   (stencil-align-dir-y . c) 

Also HorizontalBracket doesn't cut for me since I need text markups on both
ends.





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



Re: segmented glissando lines

2020-02-09 Thread dtsmarin
Is it possible to change the thickness of the fancy-gliss line?



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



Add arrow to custom gliss stencil

2019-12-24 Thread dtsmarin
Hi,

I'm using this snippet http://lsr.di.unimi.it/LSR/Snippet?id=1066 but I want
to add an arrow at its right edge. Unfortunately LP's default code for that
purpose: 
\once\override Glissando.bound-details.right.arrow = ##t
doesn't work so I need some help to figure out how to add the arrow
manually.



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



Re: \tweak Accidental stencil within chord

2019-05-01 Thread dtsmarin
I thought my code didn't work but it looks like it does. Sorry for the
unnecessary replies.
Use case:
Chromatic enharmonic tied notes where normally Lilypond wouldn't work
correctly. (Ties don't show up if you don't use this hack).
The problem is that my half-solution ruins the spacing.

#(define enhf-acc
  (lambda (grob)
(let* ((stencil (ly:accidental-interface::print grob))
   (new-stil 
 (grob-interpret-markup grob 
   (markup 
#:hspace 1
#:musicglyph "accidentals.flat"
#:hspace -2
#:transparent 
#:stencil  
   stencil
new-stil))) 
 
 #(define enhs-acc
  (lambda (grob)
(let* ((stencil (ly:accidental-interface::print grob))
   (new-stil 
 (grob-interpret-markup grob 
   (markup 
#:hspace 1
#:musicglyph "accidentals.sharp"
#:hspace -2
#:transparent 
#:stencil  
   stencil
new-stil))) 
{
1
  \set Staff.middleCPosition = #-5


}



--
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: \tweak Accidental stencil within chord

2019-05-01 Thread dtsmarin
Oops! Wrong minimal example!


#(define enh-acc
  (lambda (grob)
(let* ((stencil (ly:accidental-interface::print grob))
   (new-stil 
 (grob-interpret-markup grob 
   (markup 
#:hspace 1
#:musicglyph "accidentals.flat"
#:hspace -2
#:transparent 
#:stencil  
   stencil
new-stil))) 



\relative c' {
 
  1
  2
  2 

}





--
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: \tweak Accidental stencil within chord

2019-05-01 Thread dtsmarin
This was an example to show what I'm after.
I need to *change* the stencil (e.g. flat to be sharp ) not the colour etc.
I know how to change stencil for a single accidental with \override but
\tweak Accidental.stencil doesn't work. 

The closest I've got is this:
#(define rhomb-acc
  (lambda (grob)
(let* ((stencil (ly:accidental-interface::print grob))
   (new-stil 
 (grob-interpret-markup grob 
   (markup 
#:hspace 1
#:musicglyph "accidentals.flat"
#:hspace -2
#:transparent 
#:stencil  
   stencil
new-stil))) 

But i'm hiding the sharp, I would like to override it.




--
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


\tweak Accidental stencil within chord

2019-05-01 Thread dtsmarin
Is it possible to tweak the stencil for an accidental within a chord?

Something similar in functionality with:

\tweak Stem.color #red
\tweak Beam.color #green c8 e
4





--
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


Improve TieColumn shaping capabilities

2017-11-06 Thread dtsmarin
Hi,

Shaping multiple ties independently is a pain in the a**. On top of that,
while using some of the provided hacks/solutions here, I encountered some
weird bugs with disappearing beams etc.
https://sourceforge.net/p/testlilyissues/issues/5001/

It's completely unacceptable that an essential feature such as reshaping
ties isn't fully natively/officially supported in Lilypond. If Lilypond HAD
the perfect ties I wouldn't be mad right know but most of the times the
placing of the ties is really bad. 

My suggestion is to add a modification to the syntax so that when we add
separate ties in chord, we can still shape them independently.
e.g.
{ 4  q }

Best,
Dimitris




--
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


Improve TieColumn shaping capabilities

2017-11-06 Thread dtsmarin
Hi,

Shaping multiple ties independently is a pain in the a**. On top of that,
while using some of the provided hacks/solutions here, I encountered some
weird bugs with disappearing beams etc.
https://sourceforge.net/p/testlilyissues/issues/5001/

It's completely unacceptable that an essential feature such as reshaping
ties isn't fully natively/officially supported in Lilypond. If Lilypond HAD
the perfect ties I wouldn't be mad right know but most of the times the
placing of the ties is really bad. 

My suggestion is to add a modification to the syntax so that when we add
separate ties in chord, we can still shape them independently.
e.g.
{ 4  q }

Best,
Dimitris




--
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


How to make this postscript spanner to work with L bound-details?

2017-07-10 Thread dtsmarin
vibratospanner.ly
  

I want to be able to lengthen/shorten this spanner so that I can avoid
potential collisions. The left padding works perfectly  but the end of the
spanner doesn't respond to any kind of padding. It's too complicated for my
Scheme skills so I need your help. 

Thanks,
Dimitris



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/How-to-make-this-postscript-spanner-to-work-with-L-R-bound-details-tp204375.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: Override SystemStartSquare width?

2016-11-20 Thread dtsmarin
Many thanks Simon! 
Works really great. 




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Override-SystemStartSquare-width-tp196731p196940.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: Override SystemStartSquare width?

2016-11-20 Thread dtsmarin
I'm sorry, I thought it was easy to understand that I simply took Thomas's
code and inserted the \RemoveAllEmptyStaves command. (My file has nothing to
do with this error.)

Anyway I attached the problematic code.


originalfailed.ly
  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Override-SystemStartSquare-width-tp196731p196934.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: Override SystemStartSquare width?

2016-11-20 Thread dtsmarin
*UPDATE*
I found what causes the code to fail. Apparently it doesn't like at all the
*\RemoveAllEmptyStaves*.
I tested it multiple times both in my original file and a minimal version.

This has to be fixed btw, those extra divisi staves are meant to be hidden
most of the times :) 

HTH,
Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Override-SystemStartSquare-width-tp196731p196932.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: Override SystemStartSquare width?

2016-11-19 Thread dtsmarin
Wow Thomas,

thanks for the amazing piece of code!!! Unfortunately even If it works as a
standalone code, it won't work when I insert it in my file.
(lists-map (change-width x y-corr) (ly:stencil-expr default-stil))  <-- this
gets marked as error

I would be happy to send a minimal version of my file but this requires some
time due to the complexity of it. 


Best,
Dimitris




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Override-SystemStartSquare-width-tp196731p196888.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: Override SystemStartSquare width?

2016-11-17 Thread dtsmarin
Hi Thomas,

My code uses Scorlatti font and I'm trying to replicate SCORE's look. 
 

I simply changed the offset and width of the brackets because Lilypond's
defaults are so far from the staves. Also I can't fix the vertical distance
of the brackets even if I used this code:
\override StaffGroup.SystemStartBracket.stencil = 
#(lambda (grob)
 (let* ((stil (ly:system-start-delimiter::print grob))
(extra-height (ly:grob-property grob 'padding))
(yext (ly:stencil-extent stil Y))
(ytop (cdr yext))
(ylen (interval-length yext))
(yfinal (+ ylen (* 2 extra-height)))
(yscale (/ yfinal ylen))
   )
   (ly:stencil-translate
 (ly:stencil-scale 
   (ly:stencil-translate stil (cons 0 (- ytop)))
   1 yscale)
 (cons 0 (+ ytop extra-height)))
 ))

I'm trying to achieve this type of bracketing (for violin sections when
multiple staves are used)
 




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Override-SystemStartSquare-width-tp196731p196771.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: Pitched Trill Collision

2016-09-30 Thread dtsmarin
Thanks Malte.
Unfortunately I can't downgrade to an older version because some files won't
compile at all.I updated to the newest one by that time (2.19.48) and
everyting but this works fine.

I hope it gets fixed soon.

Best,
Dimitris



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Pitched-Trill-Collision-tp195036p195040.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: Auto Place text after last beat of a Text Spanner

2016-09-15 Thread dtsmarin
UPDATE:
This worked for me. Thanks again!

ottavaWithLoco =
#(define-music-function (mus) (ly:music?)
  #{
\set Staff.ottavation = #"8va"
$mus
\unset Staff.ottavation
<>^\markup \italic "loco"
  #})

HTH,
Dimitris



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Auto-Place-text-after-last-beat-of-a-Text-Spanner-tp194592p194604.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


Broken Tie adjust

2016-08-02 Thread dtsmarin
 

Hello,
How do I adjust the shape of those after-line-breaking ties?
They are too steep and not in the ideal position.

Dimitris



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Broken-Tie-adjust-tp193331.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: Dynamic with markup text function

2016-08-01 Thread dtsmarin
Hello Jacques,

Eventually I found what I needed. 

Great code btw!.

Best,
Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193305.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: Dynamic with markup text function

2016-07-29 Thread dtsmarin
Yes!!
Thanks a lot!
What about the alignment? Is it configurable like the other default objects?





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242p193244.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


Dynamic with markup text function

2016-07-29 Thread dtsmarin
Hello,

Instead of doing this every time:
piuF = \markup { \italic più \dynamic f }

I would prefer a function that makes this process faster. 
e.g. a\cd "f" "espress."

Best,
Dimitris



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dynamic-with-markup-text-function-tp193242.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: Start music at specified measure without having to fill the previous.

2016-07-18 Thread dtsmarin
Hi Jan-Peter,

I think the \timespan code is enough for me. 

Thanks to all of you!!! 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Start-music-at-specified-measure-without-having-to-fill-the-previous-tp192758p192788.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: Start music at specified measure without having to fill the previous.

2016-07-17 Thread dtsmarin
Thanks Urs,

could you explain  further this?

Btw, I downloaded the files but they don't work. Too many missing .ily files
that even if I downloaded them I don't get it to work.




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Start-music-at-specified-measure-without-having-to-fill-the-previous-tp192758p192761.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: Independent Repeat Spanner

2016-07-17 Thread dtsmarin
Hi David,

Thanks a lot for your great code!!!
Well you can't compile my attached file because it needs the file
"definitions.ily" which produces the glyphs  for the repeat brackets that
contain characters from the Bravura font. 

Anyway your code seems to work fine for me. The only things I would change
is a)
the type of the repeat barlines (I prefer the ones with the brackets ) and 
b) the arrow shouldn't be at the end of every spanner but should appear only
if a \break occurs. (See OP)

I wish we could make this work in multiple staves/PianoStaff but for that
purpose I will use my code until something better shows up. 

Best,
Dimitris





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Independent-Repeat-Spanner-tp192713p192754.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: Scheme controllable text spanner padding

2016-07-16 Thread dtsmarin
Thanks a lot David! 
The next step would be to make pairs of arg's but I think I can do this on
my own. 




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Scheme-controllable-text-spanner-padding-tp192729p192732.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


Scheme controllable text spanner padding

2016-07-16 Thread dtsmarin
Hello,

How can I create a function such as: \Rpad #2 which will control the padding
of a text spanner?

 It's only for reducing my code's size since using the \override blah blah
takes a lot of space if used many times!
To be absolutely clear this will not used for common things that work well
but for a custom spanner that needs tweaking every time I use it so having a
shorter command made sense to me.

Here is a template:
Rpad = #(define-music-function (parser location %??% ) (number?)
#{
. 
#})
triggered by: 

\Rpad #2 

I hope this can be achieved relatively easy.

Thanks 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Scheme-controllable-text-spanner-padding-tp192729.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


Independent Repeat Spanner

2016-07-15 Thread dtsmarin
Hello,

I'm trying to create an independent repeat spanner. (see attached) 
rep_spanner.png
  

There are several ways to notate what I'm looking for but the same
principles are applied.

Obviously my code kinda works but it's not easily configurable, I use this
quite a lot and it has been a painful experience for me so I thought you
could help me with this.

To become usable it has to do the following things:
a) insert the repeat brackets/barlines automatically 
b) insert the spanner right after the right Rep bracket
c) have an arrow when the spanner is broken:  broken_spanner.jpg
  
d) have an input method like this: 
c4 \start Rep IndRep d8e d4 ees \stop IndRep\startRepSpanner ..
\stopRepSpanner #10 <-- padding value so that you can adjust the distance
between the spanner and the following note. (I don't expect this to be auto
it's probably a lot to ask, that's just a tidy way of overriding the
padding.) 

These codes might be a good starting point:
http://lilypond.org/doc/v2.19/input/regression/d0/lily-abd04ca7.ly
accordion2.ly
  
lutoslawski_repetion_spanner_code.ly

  




--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Independent-Repeat-Spanner-tp192713.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: Create custom Staff type

2016-07-02 Thread dtsmarin
Thanks Paul,
This helps a lot. But I'm very pleased with the solution Abraham Lee posted
before.
This snippet is very useful though for other things I want to try.
-Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Create-custom-Staff-type-tp192105p192114.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: Create custom Staff type

2016-07-02 Thread dtsmarin
Well this works for me, it just takes more time to configure in the file but
I'm fine.
 Thanks again Abraham!



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Create-custom-Staff-type-tp192105p192110.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: Create custom Staff type

2016-07-02 Thread dtsmarin
Thank you, but this is not what I'm looking for. 
I want a special type of "Engraver_group" like Staff, GrandStaff etc.
e.g. 
scoreAViolaPart = \new GrandStaff \with {  \clef "alto"
} << \set GrandStaff.systemStartDelimiter = #'SystemStartSquare
  \new Staff = "A" << \global \scoreAViolaAI \\ \scoreAViolaAII >>
  \new *HiddenStaff* = "B" <<  \global \scoreAViolaBI \\ \scoreAViolaBII >>
>>

This way, the command \RemoveEmptyStaves will only affect the HiddenStaff
staves, that will have by default this command enabled. 

I hope this makes sense.






--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Create-custom-Staff-type-tp192105p192107.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


Create custom Staff type

2016-07-02 Thread dtsmarin
Hello,
I want to create a Staff type which will be used for hiding extra staves Ι
don't need.
Since I use every other available type of staves (Group,Grand,Piano etc.)
applying removeemptystaves will also affect other staves that I need. 

I tried to tweak the engraver-init file (found in
usr/shared/lilypond/current/ly) but I don't know what exactly to tweak to
make this work.

it should work like this: \new HiddenStaff  





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Create-custom-Staff-type-tp192105.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


Σχετ: Arrow Accidentals Code Error v.2.19

2016-06-01 Thread dtsmarin
Thanks Abraham, I was missing a line of code that caused the error and not the 
parser since I fixed this a while ago.
 

Στις 8:39 π.μ. Τετάρτη, 1 Ιουνίου 2016, ο/η tisimst [via Lilypond] 
<ml-node+s1069038n191280...@n5.nabble.com> έγραψε:
 

  On Tue, May 31, 2016 at 6:58 PM, dtsmarin [via Lilypond] <[hidden email]> 
wrote:

 Hi everyone,
this code doesn't work anymore. Any ideas why?
http://lsr.di.unimi.it/LSR/Snippet?id=784


Looks like all you need to do is remove the "parser" argument from the line:

#(ly:parser-set-note-names parser pitchnames)

so that you get

#(ly:parser-set-note-names pitchnames)

HTH,
Abraham 
 
 
   If you reply to this email, your message will be added to the discussion 
below: 
http://lilypond.1069038.n5.nabble.com/Arrow-Accidentals-Code-Error-v-2-19-tp191276p191280.html
   To unsubscribe from Arrow Accidentals Code Error v.2.19, click here.
 NAML 





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Arrow-Accidentals-Code-Error-v-2-19-tp191284.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


Arrow Accidentals Code Error v.2.19

2016-05-31 Thread dtsmarin
Hi everyone,
this code doesn't work anymore. Any ideas why?
http://lsr.di.unimi.it/LSR/Snippet?id=784
Thanks,
Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Arrow-Accidentals-Code-Error-v-2-19-tp191276.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


Dynamic Range fluctuation function

2016-05-30 Thread dtsmarin
Hi everyone,
I'm trying to create a box that will contain two dynamics and between them a
two-way arrow.
As you can see in the attached file, the function is faked.

Ideally something like this would make sense: 

c1\dynr #niente #ff 

(need a function that will translate those 2 values to dynamic text -in case
of the niente dynamic symbol that isn't available in the Feta font so the
smufl equivalent must be used-)

2)I had box padding issues with some dynamics and I think that the box
should be shorter vertically.
4)The current faked function works as a markup whereas it should work as a
dynamic.


Best,
Dimitris 

dynamicrange.ly
  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dynamic-Range-fluctuation-function-tp191216.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


Notched Trill Help

2016-04-13 Thread dtsmarin
Hello,
I created this code but the vertical notch at the end of the trillspan
doesn't perform as I wished.
Every time I change something the space between the notch and the end of the
trill spanner gets messed up.
Do you know how to make this "smarter" so that it auto-snaps to the end of
the spanner no matter what is the spacing of the page?

\version "2.19.38"

notchTrill =
\once \override TrillSpanner.bound-details.right.text = \markup {
\postscript #"0.09 setlinewidth 0 setlinecap
0 0.0 translate
3 2 scale
newpath
0 0.25 moveto
0 -0.25 lineto
stroke" }

\new Staff \relative c' { \override Score.TrillSpanner.to-barline = ##t
\override Score.TrillSpanner.bound-details.right.padding = #1
\notchTrill
c1\startTrillSpan \notchTrill c1\stopTrillSpan\startTrillSpan 
c2\stopTrillSpan \notchTrill c\startTrillSpan c c\stopTrillSpan
} 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Notched-Trill-Help-tp189564.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: Shape of ties

2016-03-27 Thread dtsmarin
Thank you Thomas, always helpful !!! 
Urs, I'm not so concerned about the aesthetic difference of the different
curvature, especially in Lilypond the curve of the normal ties is most of
the times ideal. I just had some two part staves with trills that looked way
to cluttered and now I'll test the flat ones to see if they free up some
space.
Best,
Dimitris  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Shape-of-ties-tp144690p189048.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


Postscript Flat Tie

2016-03-27 Thread dtsmarin
Hello,

I like the way Lilypond handles most of the normal ties. But some times my
pages are too cluttered for normal ties and I would like to use a tie with a
flat surface (as seen in some very complex modern scores). I would like if
someone had an idea how to make a tie that looks similar to the ties in this
example.  

Thank you,
Dimitris 
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Postscript-Flat-Tie-tp189044.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: Changing Laissez Vibrer ties for chords

2016-03-27 Thread dtsmarin
Hi,
Sorry for not including the code, but I simply grabbed it from this thread
and pasted it in Lilypond, so I figured out that you would do the same to
see if this code doesn't work.
My error was simply fixed by changing  (set! (ly:grob-property tie
'control-points) to (ly:semi-tie::calc-control-points tie) 
I tried several things but this seems to work fine. 
Appreciate your help though !! I'll try your solution too.  



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Changing-Laissez-Vibrer-ties-for-chords-tp170717p189042.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: Changing Laissez Vibrer ties for chords

2016-03-26 Thread dtsmarin
Please I need some help..this code doesn't work for me. Version 2.19.38
Thanks,
Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Changing-Laissez-Vibrer-ties-for-chords-tp170717p189016.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: Chord Glissando Individual Voice right bound tweaking

2016-03-20 Thread dtsmarin
Ok I was in a real rush next time I'll be more brief. 
-D. 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Chord-Glissando-Individual-Voice-right-bound-tweaking-tp188718p188728.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: Chord Glissando Individual Voice right bound tweaking

2016-03-20 Thread dtsmarin
The codefile is HUGE and I can't post it due to copyright reasons, so here is
a part of the code.
I want each gliss. line to be parallel with the other ones and after the
break they should continue their normal angle. 

\version "2.19.38"

glissandoSkipOn = {
  \override NoteColumn.glissando-skip = ##t
  \hide NoteHead
  \override NoteHead.no-ledgers = ##t
}
glissandoSkipOff = {
  \revert NoteColumn.glissando-skip
  \undo \hide NoteHead
  \revert NoteHead.no-ledgers
}
%%%
upperOne = \relative c'' { \oneVoice
\time 3/4
\change Staff = "lower"
\once\override Score.BarNumber.whiteout = #1.8
\once\override Score.BarNumber.whiteout-style = #'outline
\once\override Staff.Clef #'layer = #-1
\once\override Score.StaffSymbol #'layer = #2
\once\override Staff.Clef.whiteout-style = #'outline
\once\override Staff.Clef.whiteout = #2
\clef bass \glissandoSkipOff
\once\override DynamicText.extra-offset = #'(0.2 . 1 )
g,,,8^\p r8 r4 \once\stemDown \set stemLeftBeamCount = #0
\once\override Beam.positions = #'(-5.5 . -5.1)
\override Glissando.breakable = ##t
\override Glissando.after-line-breaking = ##t
\once \override Glissando.bound-details.right.Y = #6
\override Glissando.after-line-breaking =
#(lambda (grob)
   (ly:grob-set-nested-property! grob '(bound-details right Y) 9))
32[]\glissando \glissandoSkipOn \hideNotes r8.. | \break \change Staff
= "upper" \unHideNotes
\stemDown  \override Glissando.after-line-breaking = ##f
\glissandoSkipOff 8\! r8
}
upperTwo = \relative c'' { \oneVoice \time 3/4 s2 \change Staff = "lower"
 \once\stemUp \set stemLeftBeamCount = #0
 \once\override Beam.positions = #'(4 . 4.5)
  \override Glissando.after-line-breaking = ##t
 \override Glissando.breakable = ##t
 \once \override Glissando.bound-details.right.Y = #7
 \set glissandoMap = #'((0 . 1) (1 . 0))
 \once \override Voice.Glissando.extra-offset =
#(lambda (grob)
   (if (= 1 (ly:grob-property grob 'glissando-index)) '(0 . -0.1)
'(0 . 0.2)))
\override Glissando.after-line-breaking =
#(lambda (grob)
   (ly:grob-set-nested-property! grob '(bound-details right Y) 10))
  32[]\glissando \glissandoSkipOn s8.. | \break
  \change Staff = "upper" \glissandoSkipOff \stemUp 8\!\sfz 
}

lowerOne = \relative c' { s2.*3 }

lowerTwo = \relative c' {}

\score {
  \new PianoStaff <<
\new Staff = "upper" << \upperOne \\ \upperTwo >>
\new Staff = "lower" { \clef bass << \lowerOne \\ \lowerTwo >> }
  >>
  \layout { }
}


Hope the code helps



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Chord-Glissando-Individual-Voice-right-bound-tweaking-tp188718p188725.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


Chord Glissando Individual Voice right bound tweaking

2016-03-19 Thread dtsmarin
Hi everyone,
Is there any way of tweaking the right bound offset of each glissando line?
Also how can I fix the weird glitch after the break ?? 
Thank you,
Dimitris  
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Chord-Glissando-Individual-Voice-right-bound-tweaking-tp188718.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: Dashed Tie Design Improvement

2016-03-19 Thread dtsmarin
Thank you both for your help!
I didn't know that this was a version issue. I'm updating to the newest
version right now, I used 2.18.2.
- Dimitris 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dashed-Tie-Design-Improvement-tp188585p188628.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


Dashed Tie Design Improvement

2016-03-15 Thread dtsmarin
Hi folks,

The default shape of the tie's dashes looks a bit strange to me, is there a
way to modify it to look a bit like the second one which  in my opinion
looks fuller on page? Also how can I increase and thicken the dashes between
the tie end points? 

Thank you
 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Dashed-Tie-Design-Improvement-tp188585.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: Boxed Measure Counter

2015-12-26 Thread dtsmarin
I tried to use bar numbers but I didn't know how to force the bar numbers to
be shown at the center of each measure. 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Boxed-Measure-Counter-tp185073p185084.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


Boxed Measure Counter

2015-12-25 Thread dtsmarin
measurecounter.ly
  
Hi,
I don't understand why I can't change the stencil of the measurecounter.
When I do it some crosses appear in the score. I just want the bar numbers
to appear within a box. 
I hope that this question has not been posted again.
D.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Boxed-Measure-Counter-tp185073.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