I need help with the following: Top spacing 20mm. My section heading is lower about 30mm to fit in an invisible header. I need to make the first page of the new section without any headings and footnotes - it works but there are additional spacing above the section name.
Code: Select all
\documentclass[12pt, a4paper]{epr890}
\usepackage {fancyhdr, epsfig, amssymb, tabularx, amsmath, float, harvard}
\usepackage [left=30mm, right=25mm, top=20mm, bottom=20mm, includefoot, headheight=13.6pt]{geometry}
\begin{document}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.4pt}
\lhead{Chapter \thesection}
\chead{}
\rhead{\SectionTitle}
%-------------------------------------------------
% Start the introduction section
%-------------------------------------------------
\thispagestyle{empty}
\Section{Introduction}
\label{INTRODUCTION}
%-------------------------------------------------
%-------------------------------------------------
% Insert horizontal line
%-------------------------------------------------
\vskip -2em
\rule[0pt]{155mm}{0.4pt}
\vskip 1.0em
%-------------------------------------------------
\pagestyle{fancy}
\newpage
test
\end{document}
For the class file to build - add the following to your .cls file
Code: Select all
\newcommand {\SectionTitle}
\newcommand{\Section}[1]{\clearpage \refstepcounter{section}
\addcontentsline{toc}{section}{\protect\numberline{\thesection}#1}%
\renewcommand\SectionTitle{#1}
\begin{flushright}
\bfseries
\@afterindentfalse
\linespread{1}
\MakeUppercase {CHAPTER \thesection: #1}
\end{flushright}}