winfonts 问题

winfonts 问题

我在 Windows 7 中使用 Led 编辑器。我想使用 Times 字体,但输出的 pdf 字体有些不同。

以下是 Times 字体的代码

\usepackage[T1]{fontenc}
\usepackage{winfonts}
\fontfamily{times-ttf}\selectfont 
\renewcommand{\ttdefault}{times-ttf}
  \renewcommand{\rmdefault}{times-ttf}
  \renewcommand{\sfdefault}{times-ttf}
\renewcommand*\familydefault{\ttdefault}

我将复制到winfonts.sty同一目录中。什么原因导致了这个问题,或者我做错了什么?

答案1

复制.sty文件不足以安装此包。您应该按照包中描述的步骤进行操作自述文件。

如果你只需要一种字体看起来像 Times 一样,考虑使用

\usepackage{mathptmx}

times包已被弃用,不应再使用。

获取真正的 Times New Roman 字体的另一种方法是使用 XeLaTeX 或 LuaLaTeXfontspec包裹:

\documentclass{article}

\usepackage{fontspec}

\setmainfont[Ligatures=TeX]{Times New Roman}

\begin{document}

Hello World

\end{document}

(使用xelatex或进行编译lualatex。如果选择此路线,请参阅或者问题开始。)

相关内容