\documentclass[10pt]{article} % Default font size is 12pt, it can be changed here
%-------------------------------------------------------------------
% Packages
%-------------------------------------------------------------------
\usepackage{graphicx} % Required for including pictures
\usepackage{multicol} % multicolumn
\usepackage{float}    % specify the exact location of the figure
\usepackage{wrapfig}  % Allows in-line images such as the example fish picture
\usepackage{hyperref} % hyper-links
\usepackage{fancyhdr} % help to change the headers of the essay
\usepackage[comma]{natbib}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{geometry} % Required to change the page size to A4
%-------------------------------------------------------------------
% Settings
%-------------------------------------------------------------------
\geometry{a4paper} % Set the page size to be A4
\bibliographystyle{agsm}
\hypersetup{
  colorlinks=true, % false: boxed links; true: coloured links
  linkcolor=blue, % colour of internal links 
  citecolor=blue, % colour of links to bibliography
  filecolor=blue, % colour of file links
  urlcolor=cyan, % colour of external links
}
\renewcommand\bibname{References} \setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\lhead{} 
\chead{course$\_$(student1)\_(student2)\_(student3)\_No}
\rhead{}
\linespread{1.5} % Line spacing
\renewcommand*{\familydefault}{\sfdefault}
%*******************************************************************
%*******************************************************************
%*******************************************************************
%
% Document
%
%*******************************************************************
%*******************************************************************
%*******************************************************************
\begin{document}
% ------------------------------------------------------------------
% TITLE PAGE
% ------------------------------------------------------------------
\begin{titlepage}
  \newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % Defines a new command
  \center % Center everything on the page
  \textsc{\LARGE Royal Holloway University of London}\\[1.5cm]
  \textsc{\Large *Course*            }\\[0.5cm]
  \textsc{\large Strategic Management}\\[0.5cm]
  \HRule \\[0.4cm]
  { \huge \sffamily Assignment 1}\\[0.4cm] % Title of your document
  \HRule \\[1.5cm]
  \begin{minipage}[t]{0.4\textwidth}
    \begin{flushleft} \large
      \emph{Authors:}\\
      student1\\
      student2\\
      student3
    \end{flushleft}
  \end{minipage}
  ~
  \begin{minipage}[t]{0.4\textwidth}
    \begin{flushright} \large
      \emph{Lecturers:} \\
      \rm Lecturer \textsc{Name}\\
      \rm Lecturer \textsc{Name}\\
    \end{flushright}
  \end{minipage}\\
  \vfill
  \begin{minipage}{0.4\textwidth}
    \begin{flushleft} {\large \today}
    \end{flushleft}
  \end{minipage}
  ~
  \begin{minipage}{0.4\textwidth}
    \hfill
    \includegraphics[width=0.4\textwidth]{logo}\\[1cm] %university logo
  \end{minipage}\\[4cm]
\end{titlepage}
% ------------------------------------------------------------------------
% TABLE OF CONTENTS
% ------------------------------------------------------------------------
\tableofcontents % Include a table of contents
\newpage % leave the TOC on on the page alone
% ------------------------------------------------------------------------
% Essey
% ------------------------------------------------------------------------
\section{section}
\label{index:section}
\newpage
% ------------------------------------------------------------------------
% BIBLIOGRAPHY
% ------------------------------------------------------------------------
\bibliography{ref.bib}
% ------------------------------------------------------------------------
\end{document}