Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
LilyPond wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Warn about missing repeat
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
When typesetting orchestral pieces, you will not discover if a repeat is missing in one of the parts if you proof read the score, since the repeat will be typeset anyway if it's included in some other parts. The following engraver (generously contributed in https://lists.gnu.org/archive/html/lilypond-user/2025-11/msg00172.html) automatically detects such missing repeats and issues a warning like warning: Global repeat not stated in context #<Context Staff=lower (#<Context Voice () >) > The definition of the <code>Repeat_warn_engraver</code> and the lines adding it to the <code>Staff</code> context can preferably be placed in a separate file to be <code>\include</code>d in your music files as part of the proof reading process. <lilypond version="2.24"> #(define Repeat_warn_engraver (let ((repeat-start-anywhere? #f)) ; shared across all instances (lambda (ctx) (let ((repeat-start-local? #f)) ; local for one context (make-engraver ((start-translation-timestep engraver) (set! repeat-start-anywhere? #f)) (listeners ((volta-repeat-start-event engraver event) (set! repeat-start-anywhere? #t) (set! repeat-start-local? #t))) ((stop-translation-timestep engraver) (if (and repeat-start-anywhere? (not repeat-start-local?)) (ly:warning "Global repeat not stated in context ~a" ctx)) (set! repeat-start-local? #f))))))) \layout { \context { \Staff \consists #Repeat_warn_engraver } } << \new Staff = upper { c'1 \repeat volta 2 { c' c' c' } \repeat volta 2 { d' } } \new Staff = lower { c'1 \repeat volta 2 { c' c' c' } % \repeat volta 2 { % Typo! Missing repeat, which normally is not detected e' % } } >> </lilypond> [[Category:Contexts and engravers]] [[Category:Repeats]] [[Category:Scheme]] [[Category:Snippet]]
Summary:
Please note that all contributions to LilyPond wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Meta:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Warn about missing repeat
Add topic