Mensural ligatures: Difference between revisions
Appearance
	
	
 Import snippet from LSR  | 
			
(No difference) 
 | 
Latest revision as of 22:36, 26 October 2025
In mensural ligatures, notes with ancient durations are printed in a tight manner.
\version "2.24.0"
%% http://lsr.di.unimi.it/LSR/Item?id=118
voice = \transpose c c' {
  \cadenzaOn
  \set Score.measureBarType = #"-"
  g\longa c\breve a\breve f\breve d'\longa^\fermata
  \bar "|"
  \[
  g\longa c\breve a\breve f\breve d'\longa^\fermata
  \]
  \bar "|"
  e1 f1 a\breve g\longa^\fermata
  \bar "|"
  \[
  e1 f1 a\breve g\longa^\fermata
  \]
  \bar "|"
  e1 f1 a\breve g\longa^\fermata
  \bar "||"
}
\score {
  \context ChoirStaff <<
    \new MensuralStaff {
      \context MensuralVoice \voice
    }
    \new Staff {
      \context Voice \voice
    }
  >>
}
\paper { tagline = ##f }