lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Align instrumentName baseline (?) to Lyrics baseline


From: Klaus Blum
Subject: Re: Align instrumentName baseline (?) to Lyrics baseline
Date: Tue, 21 Jul 2015 14:28:33 -0700 (MST)

Hi Conor, 

not the most beautiful hack, but maybe it helps: Instead of instrumentName,
use a stanza object: 

% ---------------------------------------------------------------------

\version "2.19.21"

stemOff = { \hide Staff.Stem }

\score {
  <<
    \new Staff
    \relative c' {
      \stemOff
      \dynamicUp
      \cadenzaOn
      f4
    }
    \addlyrics {
      \set stanza =
      \markup {
        \normal-text
        \with-dimensions #'(0 . 0) #'(0 . 0)
        \translate #'(-8 . 0)
        \override #`(direction . ,UP)
        \fontsize #1.5  % for the letter "V", maybe needs to be adjusted as
stanza numbers use a smaller font size
        \dir-column {
          \abs-fontsize #36
          \center-align
          A
          \vspace #0.5
          \center-align
          V
        }
      }
      L
    }
  >>
  \layout {
    \context {
      \Staff
      \remove "Time_signature_engraver"
    }
    ragged-right = ##t
  }
}

% ---------------------------------------------------------------------

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Align-instrumentName-baseline-to-Lyrics-baseline-tp178907p178930.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]