• Willkommen im Forum „Archiviertes Lilypond Forum (2017)“.
 

Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter lilypondforum.de zu finden.
This is the archive of the old forum (until March 2017). You can find the current forum at lilypondforum.de.

Hauptmenü

System zentrieren

Begonnen von iugin, Mittwoch, 20. November 2013, 11:12

Vorheriges Thema - Nächstes Thema

iugin

Hallo miteinander

diesmal komme ich mit keiner Frage. :)
Ich musste ein System zentrieren, und nach ein bisschen Ausprobieren, habe ich folgendes gebastelt.
Vielleicht kann jemandem behilflich sein.

Salutoni a tutto il forum!

Eugenio

\version "2.16.2"
\language "deutsch"

Melody = \relative c'' {
  \new Voice = "melody" {
    \repeat unfold 16 { c8 d }
  }
}

Text = \lyricmode {
  la la...
}

\score {
  <<
    \new Staff { \Melody }
    \new Lyrics \lyricsto "melody" { \Text }
  >>
}

Zentriert = \markup \score {
  <<
    \new Staff {
      \new Voice = "melody2" \relative c'' {
        c8 d e d c d e d |
        c1 |
        \bar"||"
      }
    }
    \new Lyrics \lyricsto "melody2" {
      \lyricmode {
        Lo lo lo lo 
      }
    }
  >>
  \layout{}
}

\markup {
  \column {
    \fill-line {
      \Zentriert
    }
  }
}