# Font Catalogue
The [$\LaTeX$ font catalogue](https://tug.org/FontCatalogue/) is a listing of a wide variety of fonts with examples. Let's explore how to use those fonts in Reanimate.
## Fetamont
Go to
fetamont = TexConfig LaTeX
["\\usepackage{fetamont}"
,"\\usepackage[T1]{fontenc}"]
["\\ffmfamily"]
animation :: Animation
animation = scene $
showCfg "Fetamont" fetamont
{!docs/font_script.hs!}
inconsolata = TexConfig LaTeX
["\\usepackage{inconsolata}"
,"\\renewcommand*\\familydefault{\\ttdefault}"
,"\\usepackage[T1]{fontenc}"]
["\\normalfont"]
animation :: Animation
animation = scene $
showCfg "Inconsolata" inconsolata
{!docs/font_script.hs!}
-- Default font so no need to do anything.
computerModern = TexConfig LaTeX
[]
[]
animation :: Animation
animation = scene $
showCfg "Computer Modern" computerModern
{!docs/font_script.hs!}
clayTablet = TexConfig LaTeX
["\\usepackage{fontspec}"
,"\\setmainfont{QTClaytablet}"]
["\\normalfont"]
animation :: Animation
animation = scene $
showCfg "Claytablet" clayTablet
{!docs/font_script.hs!}