I am recently writing an IEEE conference paper, using the IEEEtran class. As you may all know, in an IEEEtran paper, the section titles are typeset in "SmallCaps" face. It used to have no problem at all until yesterday I tried to use XeTeX.
I wanted to use XeTeX because I wanted to use the Times New Roman truetype font provided in Windows. Only XeTeX can use OS fonts. I was successful in using XeTeX except for one thing: The section titles are no longer in SmallCaps, but in ordinary roman! I think every font does not provide smallcaps directly. It is simply a lower-case to upper-case conversion and font size reduction combined. So there should be no difficulty for XeTeX to provide such functionality for the Times New Roman font.
The only two lines that I invoke special packages for XeTeX are the following:
Code: Select all
\usepackage{mathspec}
\setallmainfonts(Digits,Latin){Times New Roman}
I want a solution. So, I am wondering if someone can point me to, or simply write himself, a package that implements the smallcaps of Times New Roman (or for general fonts). Thank you very much!