[Journal] Equation troubles

Barry Rowlingson b.rowlingson at lancaster.ac.uk
Wed Feb 24 18:55:54 EST 2010


On Wed, Feb 24, 2010 at 11:16 PM, Tyler Mitchell (OSGeo)
<tmitchell at osgeo.org> wrote:
> Hi all,
> Anyone successfully compiled Victor's tex file?

 Yes, but only a modified version that I've not managed to commit
because I didnt have commit privs :)

> I think there is a
> problem in my local installation.  He has a fairly simply math equation
> in there that's causing latex to bail on me:
>
> TWI = ln(\frac{a'}{tan\beta}
>
> When I try to compile, I get:
>
> kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 0+480/600 --dpi
> 480 eurmo10
> mktexpk: don't know how to create bitmap font for eurmo10.
>
> Not sure why it can't find this font or if it's something else weird at
> my end.  Curious if you can run, "make" in root of volume_6/en-us
> folder.  I press 'q' to quietly ignore errors, then get that failure
> message.

 'make' works for me (except for the other errors) but this equation
passes okay.

 I've got eurmo10 tex font metric file here on my system:

$ locate eurmo10
/usr/share/texmf-texlive/fonts/tfm/adobe/palatino/eurmo10.tfm

 which I think makes it the font metrics for roman oblique palatino.
Maybe you're missing this...

The typesetting is all wrong because LaTeX sees it 'ln' as 'l' times
'n', and 'tan' as 't' times 'a' times 'n'. The parentheses are
probably unneeded too. And TWI is one word, so mbox it:

\begin{equation}
\mbox{TWI} = \ln\frac{a'}{\tan\beta}
\end{equation}

Much better!

Barry


More information about the newsletter mailing list