Marek Klein wrote:
> 
> Hi all,
> how can I get the staff-lines vertically aligned?
> 
> \version "2.13.40"
> \layout { line-width = 6.2\cm ragged-right = ##f }
> \markup \fill-line {
>   \column{
>         \score {
>             \new Staff { c''' }
>             \layout { }
>         }
>     }
>   \column{
>         \score {
>             \new Staff { a }
>             \layout { }
>         }
>     }
> }
> 
> 
you could add
 - one more container column
 - a whitened markup with sufficient padding to a note in both staves:

\version "2.13.54"
\paper { 
  line-width = 6.2\cm 
  ragged-right = ##f 
}
\markup 
\fill-line { 
  \column {
    \line {
      \column{
        \score {
          \new Staff { \once \override TextScript #'padding = #9 c'''
^\markup \with-color #white x  }
          \layout { }
        }}
      \left-column{ 
        \score {
          \new Staff { \once \override TextScript #'padding = #9 a  ^\markup
\with-color #white x }
          \layout { }
        }}
      \null
}}}

-- 
View this message in context: 
http://old.nabble.com/scores-in-columns---vertical-alignment-tp31175074p31175869.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to