[Tex/LaTex] Exam Paper Header

exam

I would like to recreate something like this

University of Malta

To make my students' papers are realistic and true to the real thing as possible. How would a header like that be achieved, would it be with the \maketitle command? And how are "MAT1511 Analytical Geometry" and the date aligned separately?

Best Answer

You can set the title in a center environment, with the necessary formatting (perhaps \large\bfseries). Spacing for the subject and date could be via inserting a horizontal space (like \qquad, or \hspace{2em}).

enter image description here

\documentclass{article}
\usepackage{amsfonts}

\begin{document}

\begin{center}
  \bfseries\large
  UNIVERSITY OF MALTA

  FACULTY OF SCIENCE

  Department of Mathematics

  B.SC.(Hons.) Year I

  January 2013 Examination Session

  MAT1511 Analytical Geometry \qquad \today

  \bigskip

  \normalfont\normalsize
  11.45a.m.~--~1.45p.m.
\end{center}

\noindent
\begin{tabular}{p{\dimexpr\linewidth-2\tabcolsep}}
  Answer THREE questions \\
  \hline
\end{tabular}

\begin{enumerate}
  \item
  \begin{enumerate}
    \item
    Define the \textit{scalar triple product} $[\mathbf{x}, \mathbf{y}, \mathbf{z}]$ for vectors $\mathbf{x}, \mathbf{y}, \mathbf{z} \in \mathbb{R}^3$, and show
    \[
      [\mathbf{z}, \mathbf{x}, \mathbf{y}] = [\mathbf{y}, \mathbf{z}, \mathbf{x}].
    \]

    \item
    \ldots
  \end{enumerate}
\end{enumerate}

\end{document}
Related Question