lilypond-user
[Top][All Lists]
Advanced

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

Re: Similar to tremolo


From: Neil Puttock
Subject: Re: Similar to tremolo
Date: Thu, 8 Jul 2010 20:30:54 +0100

On 8 July 2010 19:31, Helge Kruse <address@hidden> wrote:

> How should I fix this? The output looks usable except that the quarter rest
> is too far from last tremolo.

I wouldn't change the time signature to accommodate the tremolo;
instead try scaling the durations, either directly or using
\scaleDurations:

\include "deutsch.ly"

\relative c' {
  \key es \major
  \time 3/4

  \override NoteHead #'duration-log = #1
  b64.*32/3 c es |
  as, c es |
  b64*32/3 c es

  \revert NoteHead #'duration-log
  r4 |
  c''2 es4 |
  c4. b8 as b |
}

or

\include "deutsch.ly"

\relative c' {
  \key es \major
  \time 3/4

  \override NoteHead #'duration-log = #1
  \scaleDurations #'(32 . 3) {
    b64.c es |
    as, c es |
    b64 c es
  }

  \revert NoteHead #'duration-log
  r4 |
  c''2 es4 |
  c4. b8 as b |
}

Cheers,
Neil



reply via email to

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