[Tex/LaTex] How to use freeserif font in latex

fontsfontspec

Possible Duplicate:
Install OpenType fonts in Texlive

I am looking to create some documents in LibreOffice and LaTeX. To maintain consistency I want to use the same font FreeSerif in both set of documents. Is there a way to use FreeSerif fonts in LaTeX?

Best Answer

\usepackage{fontspec}
\setmainfont{FreeSerif}
\setsansfont{FreeSans}
\setmonofont{FreeMono}

And run xelatex.

Related Question