I am trying to use the documentclass IEEEtran with XeLaTeX. It all seems to work fine (I load the fonts TeX Gyre Termes Heros, Cursor with fontspecs instead of the standard Times, Helvetica and Courier), except for the command \IEEEPARstart, which is used to create the drop cap for the first paragraph. It gives the following error message:
Font \@IEEEPARstartsubfont=""TeX at "" not loadable: Metric (TFM) file or installed font not found. ^^I\IEEEPARstart{T}{he}
I tried to substitute this command with the one from the lettrine package, but the drop cap does not look the same as the one that \IEEEPARstart should produce.
How can I rewrite the \IEEEPARstart command to work in XeLaTeX?
MWE:
\documentclass[journal, a4paper]{IEEEtran}
\usepackage{fontspec}
\setmainfont{TeX Gyre Termes}
\setsansfont{TeX Gyre Heros}
\setmonofont{TeX Gyre Cursor}
\begin{document}
\IEEEPARstart{T}{he}
\end{document}
