I would like to change the size of the section labeling in my doc. While I can alter the font size of the title (setting it to \normalsize{}), the corresponding section number's size is not affected. Is there a way I can get them both sized evenly?
\documentclass{book}
\usepackage{lipsum}% just to generate text for the example
\usepackage{titleps}
\newpagestyle{main}[\small]{
% define header
\sethead[\textbf{\thepage}][\textbf{\chaptertitle}][\textbf{CHAP. \thechapter}] % even left, center, and right
{\textbf{SEC. \thesection}}{\textbf{\sectiontitle}}{\textbf{\thepage}}} % odd left, center, and right
\pagestyle{main}
\begin{document}
\chapter[Some Fundamental Concepts]{\textit{\LARGE{Some Fundamental Concepts}}}
\section[Sets]{\normalsize{SETS}}
\lipsum[1-6]
\section[Mappings]{\normalsize{MAPPINGS}}
\lipsum[1-6]
\end{document}



titleps... – Werner Jan 28 '16 at 07:20