On 2021-04-08 9:03 pm, Colin Hunt wrote:
I've begun my first piano score in Lilypond after studying
soundsfromsound's great introduction series. This code shows my problem:

\version "2.22.0"

\language "english"
\relative
{\time 3/4\clef bass
 \repeat tremolo 12 {b,32 ds} |
 \repeat tremolo 12 { <<b32 fs'>> <<b ds>> } |
}

Your chord syntax appears incorrect.  Consider:

%%%%
\version "2.22.0"
\language "english"
\relative
{ \time 3/4 \clef bass
  \repeat tremolo 12 { b,32 ds } |
  \repeat tremolo 12 { <b fs'>32 <b ds> } |
}
%%%%


-- Aaron Hill

Reply via email to