Hi Eby,

You'll need to \override Score.Glissando #'(bound-details left padding) and adjust the values until they suit you. As far as I can tell, the bound-details padding adjustments are sensitive down to increments of 0.25, but not smaller than that. Try running the code below, which compiled successfully on 2.13.9 and gave a satisfactory result.

Adding "Gliss." to the line is, if I recall, one of the "Known Issues." I don't know if someone else has an answer but you may try the snippet repository.

To the list, is LilyPond's not respecting dots and accidentals in the \glissando command a bug?

Cheers.


%%%

\version "2.12.3"

vOne = {
  \relative c' {
    c4 e g a c d
    \once \override Glissando #'style = #' trill
    \once \override Score.Glissando #'(bound-details left padding) = #2.25
    \once \override Score.Glissando #'(bound-details right padding) = #2.5
    e,4. \glissando dis'8
  }
}

\score {
<<
    \new Voice = "Glissando"
    \vOne
>>
  \layout {
    \context {
      \Voice
      \override Glissando #'minimum-length = #10
\override Glissando #'springs-and-rods = #ly:spanner::set-spacing-rods
    }
  }
}

%%%
On 02/22/2010 03:12 PM, Eby Mani wrote:
Is there a way to print aesthetically pleasing Glissandos, that doesn't print over "Dots" and 
"accidentals" ?. It prints over the "dot" of the starting note and over the "sharp" of 
the ending note.

Also any simple way to print text such as "gliss" or "slide" over the 
glissando, without using  markup and rotate ?.

Many thanks,

Eby
*****************
\version "2.12.3"

vOne = \relative c' { c4 e g a c d \once \override Glissando #'style = #' trill 
e,4.\glissando dis'8 }

\score {
<<
\new Voice = "Glissando" \vOne>>

\layout {
        \context { \Voice
                        \override Glissando #'minimum-length = #10
                        \override Glissando #'springs-and-rods = 
#ly:spanner::set-spacing-rods
   } }
}

***********









_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to