%
% Example of how to use a custom TTF font from the nimbus family.
%
% 1. Download your TTF font file. Here we use NimbusSanNovDSemBol from
% http://www.fonts101.com/fonts/view/Uncategorized/51530/NimbusSanNovDSemBol
%
% 2. Rename your TTF font file to custom.ttf.
%
% 3. Follow the directions at: http://math.stanford.edu/~jyzhao/latexfonts.php
%
% 4. Upload custom.tfm, custom.ttf, T1-WGL4.enc, and t1custom.fd to writeLaTeX.
%
\documentclass[12pt]{article}
\usepackage[utf8x]{inputenc}
\newcommand\customfont[1]{{\usefont{T1}{custom}{m}{n} #1 }}
\title{Example: Custom Nimbus TTF Font}
\author{writeLaTeX}
\begin{document}
\maketitle
\Huge
Normal Font Text.
\customfont{Custom Font Text!}
\end{document}