更改字体 - fontspec 包的错误消息

更改字体 - fontspec 包的错误消息

使用以下代码时,我收到消息“\msg_fatal:nn {fontspec} {cannot-use-pdftex}”。我不确定 fontspec 包出了什么问题。在以下网站上,它说“使用 xelatex 编译此示例”。

https://tex.stackexchange.com/questions/618838/change-font-size-and-font-type

我不知道 xelatex 是什么。我只是想用几种不同的字体和几种不同的大小编译相同的代码。

\documentclass[12pt]{article}

\usepackage{fontspec}
\setmainfont{Times New Roman}

\usepackage{lipsum}




\begin{document}

\lipsum[1]

\end{document}

正如 David Carlisle 所说,我确实有一个旧的 LaTeX 发行版。按照他的建议,我加入了\usepackage{newtxmath,newtxtext}序言并使用 PDFLaTeX 编译了它。这次我收到了以下错误消息。

Sorry, but miktex-makepk did not succeed for the following reason:
PK font ntx-Regular-tlf-tl could not be created.
!pdfTeX error: pdflatex.exe (file ntx-Regular-tlf-tl): Font ntx-Regular -tlf-tl at 600 not found
==> Fatal error occurred, no output PDF file produced!

这是代码。

\documentclass[16pt]{article}
%
\usepackage{newtxmath,newtxtext}
\pagestyle{plain}

\usepackage{lipsum}

\begin{document}


Print this.



\lipsum[1]



\end{document}

在日志文件中,我收到以下错误消息。

2023-10-25 10:26:07,596-0400 INFO  texify - starting with command line: texify.exe --pdf --tex-option=--interaction=errorstopmode --tex-option=--synctex=-1 "C:\Users\Owner\Desktop\File\Letter of Introduction.tex"

2023-10-25 10:43:37,177-0400 INFO  texify - starting with command line: texify.exe --pdf --tex-option=--interaction=errorstopmode --tex-option=--synctex=-1 "C:\Users\Owner\Desktop\File\Letter of Introduction.tex"

相关内容