When I use ß in headings - which I want to be in small caps - it gets replaced by a double S. Is there a way to still have a ß there, which is also the same height as the other letters?
Just to clarify: I've modified the \sectionlinesformat this way so that I get small caps in the headers while displaying the text normal in the toc.
MWE:
\documentclass[10pt, oneside, numbers=noenddot]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{microtype}
\usepackage[osf]{newpxtext}
\usepackage[ngerman]{babel}
\setkomafont{chapter}{\huge\fontfamily{qpl}\selectfont\normalfont\lsstyle\scshape}
\setkomafont{section}{\large\fontfamily{qpl}\selectfont\normalfont\lsstyle\scshape}
\renewcommand*{\sectionlinesformat}[4]{#3 \MakeLowercase{#4}}
\addtokomafont{chapterentry}{\normalfont\lsstyle\scshape}
\begin{document}
\tableofcontents
\chapter{größe}
\section{Größe}
\end{document}
EDIT: I've already tried the solution from Capital ẞ in LaTeX/XeTeX/lualatex/whatever, but this didn't work.

