É possível testar, no corpo do documento, se versaletes estão disponíveis com a fonte atual (tanto para quanto pdf(la)tex
para xe(la)tex
)? O que eu gostaria de fazer é algo como:
\usepackage{xifthen}
...
\ifthenelse{<small caps are available with the current font>}{%
\textsc{my text}%
}{%
\uppercase{my text}%
}
Responder1
Editar
OK, como David apontou no comentário, simplesmente olhar \f@encoding/\f@family/\f@series/sc
não é suficiente, pois este comando é definido durante uma substituição. Portanto, provavelmente será necessário registrar se ocorrer uma substituição:
\documentclass[11pt,a4paper]{scrartcl}
\makeatletter
\def\define@newfont{%
\begingroup
\let\typeout\@font@info
\escapechar\m@ne
\expandafter\expandafter\expandafter
\split@name\expandafter\string\font@name\@nil
\try@load@fontshape % try always
\expandafter\ifx
\csname\curr@fontshape\endcsname \relax
\expandafter\gdef\csname \curr@fontshape/sub\endcsname{}% new
\wrong@fontshape\else
\extract@font\fi
\endgroup}
\newcommand\testsc{%
\ifcsname \f@encoding/\f@family/\f@series/sc/sub\endcsname
no
\else
\ifcsname \f@encoding/\f@family/\f@series/sc\endcsname yes \else no \fi
\fi
\textsc{Aa}}
\makeatother
\begin{document}
\testsc
\bfseries \testsc
\scshape \testsc
\end{document}
Editar 2
Em vez de corrigir, \define@newfont
também se pode corrigir \wrong@fontshape
:
\usepackage{etoolbox}
\makeatletter
\preto\wrong@fontshape{\expandafter\gdef\csname \curr@fontshape/sub\endcsname{}}
....