题词的不同字体

题词的不同字体

我想为所有题词使用不同的字体(例如 kpfonts 中的 veroldstyle),而主文档使用另一种字体。我参考了题词包。

我该如何实现这一点?我不能使用 XeTeX(能力不足)。

提前致谢。

答案1

\pretocmd以下是使用包中的命令的解决方案etoolbox

\documentclass[12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amsfonts,mathabx}
\usepackage{ebgaramond}
\usepackage{epigraph}
\renewcommand\textflush{flushright}

\usepackage{etoolbox}
\makeatletter
\newlength\epitextskip
\pretocmd{\@epitext}{\fontfamily{jkplkvos}\selectfont\em}{}{}
\makeatother
%
\setlength\epigraphrule{0pt}
\setlength\epitextskip{2ex}
\setlength\epigraphwidth{.8\textwidth}
\setlength\afterepigraphskip{2\baselineskip}
\thispagestyle{empty}

\begin{document}

\epigraph{For the Snark \emph{was} a Boojum, you see.}{Lewis Carroll, \emph{The Hunting of the Snark}
}

This is the last verse of \emph{Lewis Carroll}’s poem \emph{The Hunting of the Snark (An Agony in 8 Fits),} first published 1876.

\end{document} 

在此处输入图片描述

相关内容