I want to change the font size of the page header title using the package titleps. I would also like to put it in bold. How do I do that?
I have got the following MWE:
\documentclass{article}
\usepackage{titleps}% http://ctan.org/pkg/titleps
\expandafter\def\expandafter\normalsize\expandafter{%
\setlength\abovedisplayskip{20pt}
\setlength\belowdisplayskip{20pt}
\setlength\abovedisplayshortskip{5pt}
\setlength\belowdisplayshortskip{20pt}
}
\newpagestyle{main}{
\setheadrule{.1pt}% Header rule
\sethead
[\thechapter.\enspace\chaptertitle]
[]
[]
{}
{}
{\thesection.\enspace\sectiontitle}
\setfoot{}{\thepage}{}
}
\pagestyle{main}
\begin{document}
This is the introduction. This is the introduction. This is the introduction. This is the introduction. This is the introduction. This is the introduction.
\section{A section}
This is the introduction. This is the introduction. This is the introduction. This is the introduction. This is the introduction.
\end{document}
Thanks!