Possible Duplicate:
How do I use a particular font for a small section of text in my document?
How can I use the chancery font for only selected text instead of the whole document?
Possible Duplicate:
How do I use a particular font for a small section of text in my document?
How can I use the chancery font for only selected text instead of the whole document?
You can change the font family using \fontfamily.
\documentclass{article}
\newcommand*\chancery{\fontfamily{pzc}\selectfont}
\begin{document}
Normal Computer Modern. {\chancery Chancery.} Back to CM.
\end{document}

fontspec.
– Martin Scharrer
Mar 07 '11 at 07:32
I'd like to have a list of existing fonts with their shorthand names (like pzc in your example).
chancery.sty to figure out the answer to this question. I think you should ask a question asking for exactly that list. What I'd like is a list of fonts, the packages to use for them, and the font family names for them as well.
– TH.
Mar 07 '11 at 16:06
psnfss2e.pdf (texdoc psnfss should find it). For all of the possible fonts there is the online LaTeX Font Catalogue. For XeLaTeX/LuaLaTeX the available fonts are any fonts installed in your system.
– Alan Munn
Mar 07 '11 at 18:55