On Tue, Jan 12, 2010 at 03:48, Vyatcheslav Yatskovsky wrote:
Hello,
How to put chord names above the lyrics? I have the following in mind
\starttext \setupinterlinespace[big] \startlines \chord[C6]Pardon me, boy
Is that the Chattanooga choo choo?
Track twenty-nin\chord[Gadd9/D]e Boy, you can gimme a sh\chord[C6]ine
I'm just copy-pasting some of old songs. (written LaTeX): The following LaTeX code worked perfectly: \def\Ch#1{% \makebox[0pt][l]{% \raisebox{0.4\baselineskip}{\bf #1}% }} \setlength{\baselineskip}{1.8\baselineskip}} \Ch{E}Cvet dišeč z \Ch{H7}jutrom se od\Ch{cis}pre, \par \Ch{A}sonce od\Ch{E}pira o\Ch{H}či. \par \Ch{E}Polje z vetrom v \Ch{H7}plesu ziblje \Ch{cis}se. \par Gos\Ch{E}pod, pov\Ch{H}sod vidim \Ch{E}Te. \par} In ConTeXt an approximately the same, but unoptimized solution could be \def\Ch#1{% \strut\hbox to 0pt{\raisebox{0.8\baselineskip}\hbox{\bf#1}\hss}} \setupwhitespace[big] and then the same lyrics. Mojca