lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: shape ties/slurs after line break


From: Janek Warchoł
Subject: Re: shape ties/slurs after line break
Date: Sun, 24 Nov 2013 11:37:00 +0100

Hi,

2013/11/24 "Dr. med. Kai Lautenschläger" <address@hidden>:
> Hi everyone!
>
> Is there a way to shape ties and slurs after a line break? The following tiny 
> example should show the problem:
>
> ------8<--SNIPP--------------
> \version "2.17.95"
> #(set-global-staff-size 14)
> \paper { ragged-right = ##t tagline = "" #(set-paper-size "a8") }
>
> \relative { a'1^"default" ~ |\break a4 }
>
> \relative { a'1^"randomly changed shape"-\shape #'((0 . -2) (0 . 0) (0 . 2) 
> (0 . 4)) ~ |\break a4^"but here it's unchanged" }
> ------8<--SNAPP--------------

Use another set of offsets:

\version "2.17.95"
#(set-global-staff-size 14)
\paper { ragged-right = ##t tagline = "" #(set-paper-size "a8") }

\relative { a'1^"default" ~ |\break a4 }

\relative {
  a'1^"randomly changed shape"
  -\shape #'(((0 . -2) (0 . 0) (0 . 2) (0 . 4))
             ((0 . -2) (0 . 0) (0 . 2) (0 . 4)))
  ~ |\break a4^"and here it's changed as well"
}

This is mentioned in
http://lilypond.org/doc/v2.17/Documentation/notation/modifying-shapes
- is that example not clear enough?  How should we improve it?

best,
Janek



reply via email to

[Prev in Thread] Current Thread [Next in Thread]