I just began to try LuaTeX in order to make use of OpenType fonts. After loading fontspec I select such a font the usual way:
\setmainfont{Adobe Garamond Pro}
Now I wonder how I can fine tune the typesetting by the means of microtype, i.e. how I can set up protrusion rules for the selected font. The microtype manual only mentions fonts which adhere to Karl Berry's naming scheme:
\SetProtrusion
{ encoding = T1,
family = cmr }
{ A = {50,50},
\textquoteleft = {700, } }
My Question is: How does the way of using OT fonts with fontspec relate to these settings?
For starters I want to use the predefined settings for the Type1 version pad
by the means of \DeclareMicrotypeAlias{<font name>}{<alias font>}
but mt-pad.cfg
won't get loaded with the following file:
\documentclass{scrartcl}
\usepackage{fontspec}
\defaultfontfeatures{Ligatures=TeX,Numbers={OldStyle,Proportional}}
\setmainfont{Adobe Garamond Pro}
\usepackage{microtype}
\DeclareMicrotypeAlias{Adobe Garamond Pro}{pad}
\begin{document}
Some Text.
\end{document}
EDIT: I just realized that LuaTeX uses EU2 as internal font enconding which renders the deaults in mt-pad.cfg
useless. Nevertheless the question remains: What is the name of the font family I have to use in the microtype directives?