Possible Duplicate:
Load fonts that are in a ./fonts directory
I have a TTF file zapf-chancery.ttf in the same folder as my LaTeX document. How do I make this font available in my document?
Possible Duplicate:
Load fonts that are in a ./fonts directory
I have a TTF file zapf-chancery.ttf in the same folder as my LaTeX document. How do I make this font available in my document?
you did not wrote how do you want to use the font. Here is an example as a main font:
\listfiles
\documentclass{article}
\usepackage{fontspec}
\setmainfont[Path=/home/voss/]{zapf-chancery.ttf}
\begin{document}
\Huge
foo bar baz
\end{document}

If you use plain LuaTeX, you can use.
\input luaotfload.sty
\font\1={times.ttf}
\1 Times New Roman
\bye
And you should certainly use fontspec for LuaLaTeX.
luatexand notlualatex? – May 16 '11 at 14:43