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?
fncychap! ;-) – Paul Gessler Jul 23 '14 at 15:29\newcommand{\hidemath}{${}^3K_{rs}$} \chapter{Analytical form for \protect\hidemath{} and its trace}. – Werner Jul 23 '14 at 16:07