lilypond-user
[Top][All Lists]
Advanced

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

Re: \repeat tremolo


From: Thomas Morley
Subject: Re: \repeat tremolo
Date: Sun, 9 Aug 2015 14:53:29 +0200



2015-08-09 14:18 GMT+02:00 MING TSANG <address@hidden>:
Hi lilyponder,

I am trying to code \repeat tremolo to produce the following IMAGE_0. All I get is missing slanted heavy lines.  How to code \repeat tremolo so that I can produce the same as the IMAGE_1. 

%start
\version "2.18.2"

global = {
  \key c \major
  \time 4/4
  \clef bass
}

{
\global 
 <c,c>8^^ r8 r4 \grace { \tuplet 3/2{ c,16 e,16 g,16 } } q8^^ r8 r4 | %m80
  \repeat tremolo 2 { c, c,,}  | %m81
  <c,,c,>8 r8 r2. %m82
}
%end

Immanuel,
Ming

IMAGE_0
Inline image


IMAGE_!

Try:

\version "2.19.24"

{
    \clef bass
    \once \override Beam.springs-and-rods = #ly:spanner::set-spacing-rods
    \once \override Beam.minimum-length = 8.5
    \once \override Beam.positions = #'(-4 . -5.5)
    \once \override Beam.gap = #2
    \repeat tremolo 16 { c,32 c,,}
}

HTH,
  Harm


reply via email to

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