TeXMaker 的 Minion Pro 字体

TeXMaker 的 Minion Pro 字体

我尝试在文档中使用 Minion Pro 字体样式,但 TeXMaker 给出了错误消息,提示“找不到” MinionPro.sty。使用\setmainfont{Minion Pro}TexMaker 时,虽然我在包管理器中安装了 minion2newtx,但不知道该包。

有人知道我该如何解决这个问题并将其作为文档的主要字体吗?

代码:

\documentclass{article}

\usepackage{verbatim}
\usepackage{float}% If comment this, figure moves to Page 2
\usepackage{graphicx}
\usepackage{titling}
\usepackage{color}
\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=blue,
    filecolor=black,
    linkcolor=black,
    urlcolor=blue
}
\setlength{\parindent}{0pt}

\usepackage[margin=25mm]{geometry}

%\date{\today}

\usepackage[numbered,framed]{matlab-prettifier}
\lstset{style = Matlab-editor}

\pretitle{%
  \begin{center}
  \LARGE
  \includegraphics[width=10cm,height=3cm]{logo}\\[\bigskipamount]
}
\posttitle{\end{center}}

\begin{document}

\title{Testdocument}

\end{document}

答案1

按照此页面上的说明解决:MPro-安装指南-GitHub

我使用以下 PDF 作为说明:MikTeX 安装指南

一般步骤:

1) 下载您的电脑上很可能没有的所有软件。

2) 下载您电脑上很可能没有的 Minion Pro 和 Myriad Pro 的所有 LATEX 字体文件(我们称之为“指标”)。

3)为MikTeX安装LCDF typetools。

4)转换.otf 文件。

5)将文件放入正确的位置。

6)做好准备

PS:确保将所有内容安装/复制粘贴到正确的文件夹中。否则您将会遇到麻烦。您必须确保选择正确的文件夹,否则 TeXMaker 会抛出错误消息。您可以通过更新错误消息中给出的包并在 MikTeX 设置中“刷新 FNDB”来解决这个问题。

相关内容