[Tex/LaTex] Goudy Old Style for LaTeX

fontspdftex

Is there any possibility to make use of the font "Goudy Old Style" in a LaTeX document?
I haven't found it in the font packages.

Best Answer

Remarks

I downloaded the font as Goudy Old Style.ttf and placed it in the same directory as my .tex file.

Implementation

Typeset with xelatex

\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{fontspec}
\setmainfont{Goudy Old Style.ttf}
\begin{document}
ABCDEFGHIJKLMNOPQRSTUVWXYZ

abcdefghijklmnopqrstuvwxyz

1234567890
\end{document}

Output

enter image description here