Re: Tweaking a footnote

2015-10-09 Thread Vaughan McAlley
On 9 October 2015 at 10:35, Simon Albrecht wrote: >> ... > Don’t worry. The footnote engine is not well documented. > >> ... > There’s much room for improvement in the footnote implementation. True, and true. On the upside, Lilypond actually *has* footnotes that move when

Re: Tweaking a footnote

2015-10-08 Thread David Sumbler
Thanks for the response. It hadn't occurred to me to look in \paper variables for 'footnote-separator-markup', though it probably should have done. Similarly, it hadn't occurred to me simply to put the asterisk into the footnote string, even though this should have been an obvious solution! I

Re: Tweaking a footnote

2015-10-08 Thread Simon Albrecht
On 08.10.2015 18:58, David Sumbler wrote: Thanks for the response. It hadn't occurred to me to look in \paper variables for 'footnote-separator-markup', though it probably should have done. Don’t worry. The footnote engine is not well documented. Similarly, it hadn't occurred to me simply

Tweaking a footnote

2015-10-06 Thread David Sumbler
I want to annotate a particular passage with a footnote. So far I have managed to get what I want in the music itself with: \override Score.FootnoteItem.annotation-line = ##f \footnote "*" #'(0 . 3) "Theme by Louis Drouet" This produces an asterisk over the first note of the relevant passage,

Re: Tweaking a footnote

2015-10-06 Thread Pierre Perol-Schneider
Hi David, Try: \version "2.18.2" #(set-default-paper-size "a6") \paper { tagline = ##f footnote-separator-markup = ##f } { \override Score.FootnoteItem.annotation-line = ##f \footnote "*" #'(0 . 3) \markup \fill-line { "*Theme by Louis Drouet" } c'4 } Cheers, Pierre 2015-10-06