Is it worth it to switch from the fancyhdr to the scrpage2 package?
I am trying to assess it's worth because I am having problems making the headers of the listsofsomething all uppercase.
I am using the KOMA-script report class and the following definitions for footers and headers.
\documentclass[a4paper,11pt,liststotoc,bibtotoc,abstracton,twoside,open=right]{scrreprt}
\usepackage{fancyhdr}
\renewcommand{\chaptermark}[1] %
{\markboth{\MakeUppercase{\chaptername\ \thechapter.\ #1}}{}}
\renewcommand{\sectionmark}[1] %
{\markright{\MakeUppercase{\thesection.\ #1}}}
\newcommand{\helv}{ %
\bfseries\fontsize{9}{11}\selectfont}
\fancyhf{} % Clear header and footer styles
\fancyhead[RO]{\helv \rightmark}
\fancyhead[LE]{\helv \leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\fancyfoot[LE,RO]{\helv \thepage}
\renewcommand{\footrulewidth}{0.5pt}
Is there a linear way to translate it to the scrpage2 commands?
Is it worth it?