Jump to content

Positioning a \fermata over the last bar line: Difference between revisions

From LilyPond wiki
m New category
Tags: Mobile edit Mobile web edit
Remove old syntax from text
Line 1: Line 1:
To position a \fermata sign over the last bar line, you must use a specially modified rehearsal mark
To position a \fermata sign over the last bar line, you must use a specially modified rehearsal mark.
 
<pre>\override Score.RehearsalMark
  #'break-visibility = #begin-of-line-invisible</pre>


<lilypond version="2.24">
<lilypond version="2.24">

Revision as of 16:07, 15 March 2026

To position a \fermata sign over the last bar line, you must use a specially modified rehearsal mark.

\version "2.24"

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

\relative c'' {
  \override Score.RehearsalMark.break-visibility = #begin-of-line-invisible
  c1 \mark \markup { \musicglyph "scripts.ufermata" }
}