加载并使用字体,但仅限于整个文档中的一个段落

加载并使用字体,但仅限于整个文档中的一个段落

我有一份包含大量格式的书籍文档,我希望我的献词段落采用一种字体,这种字体将只在这里使用,并在整个文档中使用。假设我想使用 Tex Gyre Chorus (这里) 在该段中使用。

如何做到这一点,而不破坏所有内容,并且不会无意中影响我在文档其余部分使用的字体?

这是一个玩具示例:

\documentclass[12pt]{book}
\usepackage{lipsum}
\usepackage{lmodern}
\usepackage[sf=false]{libertine}

\begin{document}
\lipsum
Hello World! I would like this text to appear in Tex Gyre Chorus.
\lipsum
\end{document}

答案1

vincent合唱

\documentclass[12pt]{book}
\usepackage{lipsum}
%\usepackage{lmodern}% Why?
\usepackage[sf=false]{libertine}

\begin{document}
\lipsum[1]

{\fontfamily{qzc}\itshape  Hello World! I would like this text to appear in Tex Gyre Chorus.}

\lipsum[1]
\end{document}

相关内容