I am trying for weeks to to create a line with reverse symbols in Lilypond:
I know it is possible because i found it in a Lilypond generated pdf.
simpler is...
\version "2.18.2"
\include "english.ly"
\bookpart {
\header {
composer="J.S.Bach"
opus = "BWV 1087"}
\markup \large "1. Canon simplex"
\score {
\relative c' {
\key g \major
\clef bass
\time 2/4
r4 \repeat volta 2 {
g fs e d b c d g,4 }
\override TextScript #'extra-offset = #'(20 . 5.84)
s64-\markup{
\scale #'(-1 . 1)
\score {\relative {
\key g \major\clef bass\time 2/4 \global r4 }
}
}
}}}