I am using the Latex Font catalog:
http://www.tug.dk/FontCatalogue/
I can set some of the fonts, however I cannot set a lot that I want. For example, I can set "Carolmin" effectively in a document. (See below example).
\documentclass{article}
\usepackage{carolmin}
\usepackage[T1]{fontenc}
\begin{document}
\cminfamily
In the beginning was the Word, and the Word was with God, and the Word was God.
\end{document}
However, I cannot get "Accanthis" to work, which is the font I really want to use. This is frustrating especially since the "example" file provided on the font catalog website does not compile after a bit of effort.
Here is my (non-working) accanthis.tex example. I have an accanthis.sty file in the same directory. I downloaded the accanthis.sty file by typing the filename into Google, then deleting the html tags on the document that came up.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{accanthis}
\begin{document}
{\accanthis Hello there!}
\end{document}
I hope you can provide some feedback here!


\accanthis-- but it is usingaccanthis.styandT1AccanthisADFStdNoThree.fd, both from 2013/11/04. (You can check this by adding\listfilesto your.texfile, recompiling, and then looking at the end of the.log.) In other words, you need both the.styfile and various font-files related toaccanthisinstalled. (Exactly which font files depends on whether you use pdfTeX, LuaTeX, or XeTeX to compile...) – jon May 05 '14 at 03:27