Jump to content

Tam-tam example: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
A tam-tam example, entered with 'tt'
A tam-tam example, entered with ‘tt’.


<lilypond version="2.24.0" full>
<lilypond version="2.24">
#(define mydrums '((tamtam default #f 0)))
#(define mydrums '((tamtam default #f 0)))


Line 13: Line 13:
   tt 1 \pp \laissezVibrer
   tt 1 \pp \laissezVibrer
}
}
\paper { tagline = ##f }
</lilypond>
</lilypond>


[[Category:Percussion]]
[[Category:Percussion]]
[[Category:Preparing parts]]
[[Category:Really simple]]
[[Category:Rhythms]]
[[Category:Rhythms]]
[[Category:Specific notation]]
[[Category:Specific notation]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]

Latest revision as of 19:17, 30 November 2025

A tam-tam example, entered with ‘tt’.

\version "2.24"

#(define mydrums '((tamtam default #f 0)))

\new DrumStaff \with { instrumentName = #"Tamtam" }

\drummode {
  \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
  \override Staff.StaffSymbol.line-positions = #'( 0 )
  \override Staff.BarLine.bar-extent = #'(-1.5 . 1.5)

  tt 1 \pp \laissezVibrer
}