[Tex/LaTex] Turn off bold in title + change header on title page

header-footertitles

I am trying to make a title page following a template provided. I need to have a top right header on every page except the first where I should have only the name of the grant council at the top left (with no line below it this time). I can see how to get the headers for all pages except the title page. I tried to follow Header or footer of title page differs with that of main text to modify only the title page header but with no luck. I also need a multi-line centred title. How can I turn off bold for some of the lines in the title? Finally, I need to move the whole title up to the top of the page, that is remove much of the space above its top line.

Here is a skeleton version of the file I would like to get working.

\documentclass[a4paper,11pt]{article}
\usepackage[utf8x]{inputenc}

%Add header to each page
\usepackage{fancyhdr}

\setlength{\headheight}{14.5pt}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{Name, Title, Section}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\usepackage{mathptmx}


\title{Name\\Grant\\Research proposal\\Part B\\Title\\Acronym\\Length}

\date{}
\begin{document}

\maketitle

\section*{test}

\end{document}

EDIT: Although it is the page with the title on it so a title page in that sense, I need to start the document directly below the title .

Best Answer

As a personal preference, I would forego the use of \maketitle in favour of having a little more freedom in typesetting the different style of the title page and what follows. In that regard, consider the following:

\documentclass[a4paper,11pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage{lipsum}% http://ctan.org/pkg/lipsum
\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
\usepackage{mathptmx}

\pagestyle{fancy}
% Global fancy header style
\lhead{}
\chead{}
\rhead{Name, Title, Section}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\setlength{\headheight}{14.5pt}

\begin{document}

% Set fancy header style for title page only (local fancy header style)
\fancypagestyle{titlepage}{
  \lhead{Name of Grant Council}% Grant name
  \rhead{}% Remove global (right) header 
  \renewcommand{\headrulewidth}{0pt}
  \renewcommand{\footrulewidth}{0pt}
}

\thispagestyle{titlepage}

\begingroup
  \centering \Huge
  Name\\Grant\\Research proposal\\Part B\\Title\\Acronym\\Length\\
\endgroup

\section*{test}
\lipsum[1-20]
\end{document}​

The "title" is typeset using \centering\Huge, so there's no bold. Headings are set for the first page under the fancy style titlepage, that modifies only the title page headings (via \thispagestyle{titlepage}) - that is, this is a local change. The lipsum package was included merely to populate the document with some dummy text.

Title page with different heading

Of course, spacing after the heading can be adjusted as required (using, say, \bigskip or other vertical spacing techniques).