Re: Vertical spacing of text and glyphs in a \mark

2008-12-17 Thread Luci
This is indeed usefull. Is there a way to specify this once for all and 
not at each \mark ?


Thanks,
L.

David Stocker a écrit :

A useful tool indeed. Thanks Mark!

Mark Polesky wrote:

Dave,

Try this:

\markup \line \general-align #Y #CENTER {
\small \bold \italic To Coda  
\musicglyph #scripts.coda
  }


- Mark


 

  



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user






___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Vertical spacing of text and glyphs in a \mark

2008-12-17 Thread Mats Bengtsson

David Stocker wrote:

A useful tool indeed. Thanks Mark!

Mark Polesky wrote:

Dave,

Try this:

\markup \line \general-align #Y #CENTER {
\small \bold \italic To Coda  
\musicglyph #scripts.coda
  }

This can be simplified into

\markup \vcenter {
   \small \bold \italic To Coda  
   \musicglyph #scripts.coda
 }

   /Mats



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Vertical spacing of text and glyphs in a \mark

2008-12-15 Thread David Stocker
I'm trying to get Coda markings to come out right. What I want is for 
the words To Coda to be printed just to the left of a coda symbol. I'm 
almost there, but the text is too high. Is there a way to move the text 
down, independent of the coda symbol, so that it's about centered 
horizontally?


See the code below.

Thanks,

Dave

%%% textCoda.ly

\version 2.11.62

textCoda = {
 \once
 \override Score.RehearsalMark #'self-alignment-X = #0.770
 \mark
 \markup {
   \small
   \bold
   \italic To Coda  
   \musicglyph #scripts.coda
 }
}

music = {
 \relative c' {
   c4 d e f | e c d2 | g4 f e d \textCoda | c b c2 |
 }
}

\score {
 \music
}


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Vertical spacing of text and glyphs in a \mark

2008-12-15 Thread Mark Polesky
Dave,

Try this:

\markup \line \general-align #Y #CENTER {
\small \bold \italic To Coda  
\musicglyph #scripts.coda
  }


- Mark


  


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Vertical spacing of text and glyphs in a \mark

2008-12-15 Thread David Stocker

A useful tool indeed. Thanks Mark!

Mark Polesky wrote:

Dave,

Try this:

\markup \line \general-align #Y #CENTER {
\small \bold \italic To Coda  
\musicglyph #scripts.coda
  }


- Mark


  



  



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user