Jump to content

Time signature with note in denominator: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
To change the time signature from 3/2 to 3/(half note), override the <code>'stencil</code> property to allow markup.
To change the time signature from 3/2 to 3/(half note), override the <code>'stencil</code> property to allow markup.


<lilypond version="2.24.0">
<lilypond version="2.24">
%% %% http://lsr.di.unimi.it/LSR/Item?id=554
%% %% http://lsr.di.unimi.it/LSR/Item?id=554
%% see also http://lsr.di.unimi.it/LSR/Item?id=642
%% see also http://lsr.di.unimi.it/LSR/Item?id=642

Revision as of 18:53, 16 November 2025

To change the time signature from 3/2 to 3/(half note), override the 'stencil property to allow markup.

\version "2.24"

%% %% http://lsr.di.unimi.it/LSR/Item?id=554
%% see also http://lsr.di.unimi.it/LSR/Item?id=642

tsMarkup = \markup {
  \override #'(baseline-skip . 0.5)
  \column { \number 3 \note {2} #-1 }
}

\relative c' {
  \override Staff.TimeSignature.style = #'default
  \override Staff.TimeSignature.stencil = #(lambda (grob)
    (grob-interpret-markup grob tsMarkup))
  \time 3/2
  c2 d4 e f2
  g1.
}