答案1
我找到了一个解决方案。以下是 MWE:
\documentclass{article}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{MinionPro} % https://github.com/sebschub/fontpro
\usepackage{libertine}
\usepackage{titlesec}
% garamondx emph
% install it with https://www.tug.org/fonts/getnonfreefonts
\let\emph\relax
\DeclareTextFontCommand{\emph}{\fontfamily{zgmx}\selectfont\em}
% minion pro bold
\let\textbf\relax
\DeclareTextFontCommand{\textbf}{\fontfamily{MinionPro-LF}\selectfont\bfseries}
% minion pro bold italic
\newcommand{\bit}[1]{\textbf{\textit{#1}}}
% minion pro bold section
\titleformat{\section}
{\fontfamily{MinionPro-LF}\selectfont\bfseries}{\thesection}{1em}{}
\begin{document}
\section{Test}
normal, \emph{emph}, \textbf{bold} and \bit{bold italic}
\end{document}
目的是复制这, 但在pdfTeX, 与Garamond 专家作为\emph
。