Am Donnerstag, 22. Mai 2008 schrieb Valentin Villenave:
> "Markup expressions may also be enclosed in double quotes "...". Such
> expressions are treated as text strings and may not contain nested
> expressions or commands. Therefore, braces are generally prefered to
> double quotes."

Actually, these two are not the same, in particular the spacing is very 
different. I ran into this problem just a few days ago: With {...}, when 
lilypond decides on the space between the words, the spaces between the words 
was a too tight, so it was hard to tell words apart and read the text. 
With "...", the width of the spaces seems to be taken from the font and the 
text is much more readable...

As an example, look at the attached test case, where the second title line 
(using {...} for the markup) is way too tighly spaced and thus hard to read. 
I had an even worse case, but I can't remember  or reproduce now.

Cheers,
Reinhold
-- 
------------------------------------------------------------------
Reinhold Kainhofer, Vienna University of Technology, Austria
email: [EMAIL PROTECTED], http://reinhold.kainhofer.com/
 * Financial and Actuarial Mathematics, TU Wien, http://www.fam.tuwien.ac.at/
 * K Desktop Environment, http://www.kde.org, KOrganizer maintainer
 * Chorvereinigung "Jung-Wien", http://www.jung-wien.at/
\version "2.11.46" 

#(set-global-staff-size 14.5)

\header { 
  testII = \markup \fill-line { "Coro (SATB) ed Orchestra o Organo" }
  testIII = \markup\fill-line { \line{Coro (SATB) ed Orchestra o Organo} }
}
  
titlePageMarkup = \markup { \fontsize #2 \column {
    \fill-line { \fontsize #5 \fromproperty #'header:testI }
    \fill-line { \fontsize #5 \fromproperty #'header:testII }
    \fill-line { \fontsize #5 \fromproperty #'header:testIII }
  }
}

\paper { bookTitleMarkup = \titlePageMarkup }


\relative { c1} 

Attachment: markup_spacing.pdf
Description: Adobe PDF document

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

Reply via email to