为什么我在我的 tex 文档中看不到拉丁现代语?

为什么我在我的 tex 文档中看不到拉丁现代语?

一个完全新手的问题:

我在 Mac (10.7.x) 上安装了新版本的 TeX (>3.0)。软件包lmlm-math已安装 (我已在 TeX Live Utility 中检查)

我已将以下代码放入我的.tex摘要文档中:

\usepackage{lmodern}
\usepackage[T1]{fontenc} 

根据我所读到的所有内容,这应该可以做到。但是当我编译文档时,我没有看到它Latin Modern!它只是一种普通字体(我认为Times)。我已经测试过注释掉该\usepackage{lmodern}行,它是相同的字体。我没有收到任何编译错误。

现在,我的/Library/fonts文件夹不包含任何lm字体。我试图将字体从/usr/local/texlive/2007/texmf-dist/fonts/opentype/public/lm复制到/Library/fonts但目前尚未成功。我是否应该lm将此文件夹中列出的大约 50 种字体中的每一种复制到字体文件夹中?请帮忙!

答案1

\documentclass{article}
\usepackage{lmodern}
\usepackage[T1]{fontenc} 
\begin{document}
foo \textbf{bar}
\end{document}

有嵌入字体:

voss@shakira:~> pdffonts foo.pdf
name                                 type              encoding         emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
BTXVOT+LMRoman10-Regular             Type 1            Custom           yes yes no       4  0
APJXFQ+LMRoman10-Bold                Type 1            Custom           yes yes no       5  0

相关内容