[Tex/LaTex] partially non capital section title

capitalizationsectioning

I try to do a partially small capital title because of a Name. How would I do that?

A mwe is given below:

\documentclass{JAC2003}

\begin{document}
    \section{BIGsmallBIG}
\end{document}

leads to:
BIGSMALLBIG

Classfile: http://sourceforge.net/p/jacow-spms/jacow-templates/ci/master/tree/LaTeX/A4/ -> the jac2003.cls file would be it I think.

Best Answer

It seems that nothing too complicated is needed for this class:

\documentclass{JAC2003}

\begin{document}
    \section{BIG\lowercase{small}BIG $\lowercase{a}=A$}
\end{document}
Related Question