Jump to content

Spacing out percent repeats with hidden notes: 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:
If you don't like the spacing used for percent repeats, you can enlarge the percent bars by suitably adding hidden notes.
If you don't like the spacing used for percent repeats, you can enlarge the percent bars by suitably adding hidden notes.


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



Revision as of 18:56, 16 November 2025

If you don't like the spacing used for percent repeats, you can enlarge the percent bars by suitably adding hidden notes.

\version "2.24"

%% http://lsr.di.unimi.it/LSR/Item?id=11

\new Staff <<

  \new Voice {
    \repeat percent 3 \relative c'' { e e e e }
    \repeat percent 3 \relative c'' { e e e e }
  }
  
  \new Voice {
    s1 s s
    s1 \hideNotes \repeat unfold 8 c4 \unHideNotes 
  }

>>