lilypond

Lilypond score with reverse symbols


I am trying for weeks to to create a line with reverse symbols in Lilypond:Bar of music with the time signature, key, and clef repeated at the end except each of them has been flipped horizontally.

I know it is possible because i found it in a Lilypond generated pdf.


Solution

  • 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  }
            }
          } 
    }}}