lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: fermata under a barline


From: Mats Bengtsson
Subject: Re: fermata under a barline
Date: Wed, 22 May 2002 16:44:52 +0200

> mats's suggestion isn't working here:
> 
> http://jeffcovey.net/music/scores/bach/air/
> 
> the bottom fermata isn't appearing at the end.  i'm getting:
> 
> warning: Junking request: `Mark_req':
>   \mark #'(music "scripts-dfermata")

The reason is that you just copied half of the solution
from my previous answer in
http://mail.gnu.org/pipermail/lilypond-user/2002-January/000735.html

By default, the Mark engraver lives in the Score context which 
means that you cannot have more than one mark on the same bar
line. The trick is to move the Mark engraver from the Score
context to the Staff context, which means you could have one
mark for each stave. This is achieved using the following
lines in the \score{...} declaration:

  \paper{
    \translator{\ScoreContext
      \remove "Mark_engraver"
    }
    \translator{\StaffContext
      \consists "Mark_engraver"
    }
 }


By the way, I think "on the G string" is really a misnomer
especially when the piece is in the original key as in your
case.

   /Mats





reply via email to

[Prev in Thread] Current Thread [Next in Thread]