lilypond-user
[Top][All Lists]
Advanced

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

Re: Stopwatch time in markup


From: James E. Bailey
Subject: Re: Stopwatch time in markup
Date: Sat, 24 Jan 2009 11:31:24 +0100

That's odd, there are extra spaces in there too. What if you try just copying and pasting in the ′ and ″ characters? Or what about using \char ##x2032? Does that help?
Am 24.01.2009 um 11:04 schrieb Ole Schmidt:

when I compile your example, it comes out like this (see pdf), why??
I'am on Mac OS 10.5.6 using the latest Lilypond...

<Bild 1.jpg>


ole




Am 23.01.2009 um 23:59 schrieb Mark Polesky:

James E. Bailey wrote:

Wow, that took me a minute to figure out. The quotes around 33" are
the problem. That makes it separate text. Putting the quotes around
the entire time fixes it.
{
   \mark \markup \rounded-box {
      \small {
         "4'33\""
      }
   } c'2
}

Might as well use the proper characters for minutes and seconds...

- Mark

________________________________________________________

\version "2.12.1"

min =
\markup {
 %% 2032 = PRIME
 #(ly:export (format "~a" (ly:wide-char->utf-8 #x2032)))
}
sec =
\markup {
 %% 2033 = DOUBLE PRIME
 #(ly:export (format "~a" (ly:wide-char->utf-8 #x2033)))
}

{
 \mark \markup \rounded-box {
   \small \concat { 4 \min 33 \sec }
 } c'2
}


<stopwatch-time.png>_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user

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





reply via email to

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