Hallo zusammen!
Ich verzweifle gerade darüber, Fußnoten an markups innerhalb einer Score anzuhängen, also z.B. an ein
\tempo \markup {"Allegretto*"} .
Ich habe bis jetzt folgende Lösung für Instrumentennamen oder Titel gefunden, die aber den Nachteil hat, dass das nur auf der ersten Seite geht:
#(set-default-paper-size "a6")
\header {
title = "My* Title"
tagline = #f
}
\layout {
annotation-line = #f
}
\paper {
footnote-separator-markup = ##f
}
\markup {
\null
\footnote
\null
\italic \concat { "*" \hspace #.3 "Moi, moi, moi" \hspace #.3 "!" }
\null
\footnote
\null
\italic \concat { "**" \hspace #.3 "My instrument" \hspace #.3 "!" }
\null
\footnote
\null
\concat { "***" \hspace #.3 "Hü kommt immer auf die erste Seite" \hspace #.3 }
}
\score {
\relative c' { \tempo \markup {"Allegretto*****"} \override Score.FootnoteItem #'annotation-line = ##f \footnote "****" #'(0 . -2) "**** Die erste Note " c d e f g a b c^\markup {*** } }
\layout {
indent = 20
\context {
\Staff
instrumentName = "Cello**"
}
}
}Ich hoffe, ich drücke mich verständlich aus...
Hat jemand eine Idee, wie das gehen kann?
Vielen Dank schon mal und viele Grüße
Simon