Latex 字体不起作用

Latex 字体不起作用

我是 Latex 的新手,正在尝试将其用于我的论文。我想为我的文档使用字体,所以我遵循了这里

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{tgbonum}

\begin{document}
This document is a sample document to test font 
families and font typefaces.

This text uses a different font typeface
\end{document}

但是,它没有生成任何 pdf 文件。它抛出错误:

!pdfTeX error: /Library/TeX/texbin/pdflatex (file ec-qbkr): Font ec-qcsr at 600
not found
==> Fatal error occurred, no output PDF file produced!

如果我删除行 \usepackage{tgbonum},它会创建一个带有默认字体的 pdf。

那么我怎样才能在我的文档中使用其他字体呢?

相关内容