EB Garamond is a free and open source implementation of Claude GaramondâÂÂs typeface, Garamond, with matching italic characters designed by Robert Granjon. Its name is a shortening of EgenolffâÂÂBerner Garamond; the letter forms are taken from the EgenolffâÂÂBerner specimen printed in 1592.
The font family covers Latin, Greek, Cyrillic, and International Phonetic Alphabet (IPA) glyphs.
In 2011 the Austrian designer Georg Mayr-Duffner released the EB Garamond under the Open Font License. Mayr-Duffner took the letterforms from a scan of a specimen known as the âÂÂBerner specimenâ which was printed in 1592 by Conrad Berner, son-in-law of Christian Egenolff and his successor at the Egenolff print office. It shows Garamont's roman and Granjon's italic fonts at different sizes. The Greek characters were initially based on Robert Granjon's work, but Mayr-Duffner planned to modify their designs. In addition, the font includes OpenType features such as swash italic capitals and schoolbook alternates.
Duffner's intention was to include multiple optical sizes. As of 2014 his implementation included fonts based on the 8 and 12 point forms from the 1592 specimen, but lacked the bold font faces. As Georg Mayr-Duffner couldn't complete the bold weights for personal reasons, Google commissioned the Spanish type designer Octavio Pardo to continue the project. As of 2018 Pardo's implementation includes 5 weights (Regular, Medium, Semi-Bold, Bold and Extra-Bold), both in regular and italic style.
Mayr-Duffner implemented the EB Garamond originally in FontForge using the SFDIR and UFO format. Octavio Pardo switched to the proprietary font editor Glyphs that supports multiple master fonts. Pardo's implementation is hence based on two masters, Regular and Bold. The other weights are generated from the masters. The letter forms and the kerning of Pardo's Regular are identical with Mayr-Duffner's EB Garamond 12. The source of the fonts is drawn with cubic Bézier curves, thus the OTF-version (CFF-style) version of the compiled fonts should be preferred over the TTF-version, as TTF requires quadratic Bézier curves which have to be generated by lossy conversion during the compilation from the source files.
EBGaramond-Maths is a package for LaTeX that provides a version of the EB Garamond 12 for mathematics. Its maintainer is Clea F. Rees.
Garamond-Math is an additional OpenType font file for the EB Garamond family containing symbols for mathematics. The file is provided by Yuansheng Zhao.
In 2023 a separate font of decorative initials was released, based on the illuminated capitals in De Peste Commentarius (1589) by the French abbot, Jean Antoine Sarrasin.
As of 2018, EB Garamond includes the following OpenType features:
The feature list and additional information can be obtained by tools like otfinfo (e.g. <code>otfinfo -f `kpsewhich EBGaramond-Regular.otf`</code>) or FontDrop!.
A comparison of different fonts found that Garamond (not EB Garamond specifically) was significantly more economical of toner or ink than most others, including some designed specifically for economy, though Garamond also sets smaller at the same nominal point size.
The prominent typeface designer Erik Spiekermann described the EB Garamond as "one of the best open source fonts".
EB Garamond is also distributed via the CTAN mirrors as LaTeX font package. Therefore, it can be easily applied to LaTeX based documents by adding <code>\usepackage{ebgaramond}</code> to the document preamble. Unfortunately the classic LaTeX font system cannot make use of all characters and OpenType features offered by EB Garamond, but this can be solved by using the XeTeX smart font subsystem.
Nowadays LaTeX supports the three smart font technologies OpenType, AAT and Graphite directly through XeTeX, which has to be activated in one's LaTeX editor. Using the editor LyX, this can be done by checking a box under LyX > Document > Settings > [â¦] use XeTeX. This means adding <code>\use_non_tex_fonts true</code> to the header of the .lyx document files. Then all OpenType, AAT and Graphite fonts installed locally on your OS can be used directly.
In order to access the smart font features of EB Garamond, some code has to be added to the document preamble. E.g. to set EB Garamond as the document main font using old-style figures and the OpenType Stylistic Set 6 (long-tailed Q), the following code can be used: <pre>\usepackage{fontspec} \setmainfont{EB Garamond}[Numbers={OldStyle;Proportional},RawFeature={+ss06}]</pre> Another method to achieve the same result is the following specification: <pre>\usepackage{fontspec} \setmainfont{EB Garamond}[RawFeature={+onum;+pnum;+ss06}]</pre>