[Tex/LaTex] How to get a Garamond font

fontsgaramond

I am trying to use Garamond font. How do I go about getting this font?

\documentclass[12pt,a4paper]{article}


\usepackage{setspace}

\usepackage{geometry}

\usepackage{etoolbox}


\singlespacing
\usepackage{varwidth}
\geometry{margin=1.5in}
\title{}
\date{}
\author{}



\begin{document}
\maketitle
\end{document}

Best Answer

If you are using TeX or pdfTeX, you can load one of several packages to set your default document font to a Garamond. If you are using LuaTeX or XeTeX, you can choose from any font installed for your system.

Here are some options for the traditional engines. The LaTeX Font Catalogue can be used to find information about TeX fonts for these cases.

EB Garamond:

EB Garamond

This would be my preference.

garamondx:

garamondx

This is an extended version of EB Garamond which ignores the font's typographical context.

Cormorant Garamond:

Cormorant Garamond

This is a new package about which I know nothing.

In the code below, ebgaramond is enabled. The alternative lines for the other options above are commented. ebgaramond and CormorantGaramond are included in current TeX Live, but garamondx can't be. If you want to use this package, download the getnonfreefonts script and use it to install the package. Licensing means it cannot be included in the main distribution.

\documentclass[border=10pt]{standalone}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
% \usepackage{garamondx}
% \usepackage{CormorantGaramond}
\begin{document}
  The quick brown fox jumped over the lazy dog.
\end{document}
Related Question