1

Consider the following MWE:

\documentclass[11pt,a4paper]{book}
\usepackage[Conny]{fncychap}  %% I used Conny, but any style gives the same result
\usepackage{lipsum}
\begin{document}
\chapter{Analytical form for ${}^3K_{rs}$ and its trace}
\lipsum
\end{document}

In the headers the subscripts are automatically changed to capital letters: how do I avoid it?

mattiav27
  • 512

1 Answers1

2

The conversion to uppercase can be reverted to lower case with \lowercase:

\documentclass[11pt,a4paper]{book}
\usepackage[Conny]{fncychap}
\usepackage{lipsum}
\begin{document}
\chapter{Analytical form for ${}^3K_{\lowercase{rs}}$ and its trace}
\lipsum
\end{document}

Or a robust macro can be defined, that is not expanded by \MakeUppercase:

\documentclass[11pt,a4paper]{book}
\usepackage[Conny]{fncychap}
\usepackage{lipsum}
\DeclareRobustCommand*{\myK}{\ensuremath{^3K_{rs}}}
\begin{document}
\chapter{Analytical form for \myK\ and its trace}
\lipsum
\end{document}
Heiko Oberdiek
  • 271,626