有没有什么办法可以在 Latex 中使用微软的 Tahoma 字体?

有没有什么办法可以在 Latex 中使用微软的 Tahoma 字体?

谷歌搜索这个问题,得到很多帖子,但没有明确的答案。有没有办法在 latex 中使用 Tahoma 字体?

答案1

假设你已将Tahoma.ttf文件安装在系统可以找到的位置(在我的 Mac 上它在/Macintosh HD/Library/Fonts),那么使用它就很简单

\documentclass{article}
\usepackage{fontspec}
\setmainfont{Tahoma}

\begin{document}
Hello, world!
\end{document}

您必须小心使用 XeLaTeX ( xelatex) 或 LuaLaTeX ( lualatex) 而不是常规 LaTeX 进行编译。

相关内容