On Ubuntu 10.4LTS
I'm trying to use the microtype
package in a memoir
class of document, for example like this:
\usepackage[final,expansion=true]{microtype}
However, when I attempt to compile this (with rubber
, latexmk
or others) I get an error like this:
job.tex:72: Font csnameendcsname=rm-lmr10+20 at 10.95pt not loadable: Metric (TFM) file not found.
job.tex:72: leading text: \parbox{5in}{Abstract!}
job.tex:72: Font csnameendcsname=rm-lmr10-20 at 10.95pt not loadable: Metric (TFM) file not found.
job.tex:72: leading text: \parbox{5in}{Abstract!}
job.tex:80: Font csnameendcsname=rm-lmr10+20 at 10.0pt not loadable: Metric (TFM) file not found.
job.tex:80: leading text: ...box{11cm}{\noindent{}All rights reserved.}
job.tex:80: Font csnameendcsname=rm-lmr10-20 at 10.0pt not loadable: Metric (TFM) file not found.
job.tex:80: leading text: ...box{11cm}{\noindent{}All rights reserved.}
Note, I'm leaving out lots of code that may be interacting, but the one active line that results in this error is the inclusion of the microtype
package.
I'm using \usepackage{lmodern}
and \usepackage[T1]{fontenc}
, but when I leave those out the problem still exists, and the font names are correspondingly changed from lmr10
to the default cm10
.
This code works readily with TeXShop on Mac OS X, however it doesn't seem to work (readily) on Ubuntu. I just don't know enough about how to set up the fonts on Ubuntu to resolve this problem, and I'd be much obliged for input on how to resolve errors such as this.
Thank you.
Brian