Am 28.11.2012 um 09:58 schrieb Andreas Mang
Dear all,
is there a simple way to convince context to put small caps in italic?
Thanks. Andreas
ConTeXt ver: 2012.11.23 17:35 MKIV
%%%% minimal example %%%% \starttext
% this is what I intended to do \emph{\smallcaps Something} Something % not italic
% this is what if tried: {\it\sc Something} % not italic
{\italic\smallcaps Something} % not italic
{\slanted\smallcaps Something} % not italic
{\smallcaps\italic Something} % no small caps
\stoptext %%%% minimal example %%%%
Latin Modern uses a separate file for the small capitals but when you use a font which has them in font you can enable them when for all styles when available. \setupbodyfont[pagella] \starttext {\tf\setff{smallcaps}SmallCaps\par} {\it\setff{smallcaps}SmallCaps\par} {\bf\setff{smallcaps}SmallCaps\par} {\bi\setff{smallcaps}SmallCaps\par} \stoptext Wolfgang