\RequirePackage{fixltx2e}
\documentclass[11pt,a4paper,twoside,norsk]{article}
\usepackage{studentproject}

% Insert full name of group member(s).
\firstgroupmember{Your name}
\secondgroupmember{}
\thirdgroupmember{}

% Add your references in BibTeX-format here. You need to run BibTeX and then pdfLaTeX before you see them in the output.
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
% Example reference.
@article{greenwade93,
    author  = "George D. Greenwade",
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
    year    = "1993",
    journal = "TUGBoat",
    volume  = "14",
    number  = "3",
    pages   = "342--351"
}

\end{filecontents}


\begin{document}
\maketitle
\begin{abstract}
  Some appropriate text
\end{abstract}
\section{Introduction}
Example of citation: see \cite{greenwade93}.
\section{Theory}
For your convenience: The Butcher tableau of the matrix:
\[
  \begin{array}{c|cccc}
    0 & 0 & 0 & 0 & 0  \\[1.2ex]
    2\gamma & \gamma & \gamma & 0 & 0 \\[1.2ex]
    1 & \frac{-4\gamma^2 + 6 \gamma -1}{4\gamma} & \frac{-2\gamma+1}{4\gamma} &  \gamma & 0 \\[1.2ex]
    1 & \frac{6\gamma-1}{12\gamma} & \frac{-1}{12\gamma(2\gamma-1)} &
    \frac{-6\gamma^2+6\gamma-1}{3(2\gamma-1)} & \gamma \\[1.2ex] \hline \\[-2ex]
    \widehat{\vec{b}}^\top  & \frac{-4\gamma^2 + 6 \gamma -1}{4\gamma} & \frac{-2\gamma+1}{4\gamma} &
    \gamma & 0 \\[1.2ex]
    \vec{b}^\top &  \frac{6\gamma-1}{12\gamma} & \frac{-1}{12\gamma(2\gamma-1)} & \frac{-6\gamma^2+6\gamma-1}{3(2\gamma-1)} & \gamma 
  \end{array}
\]
\section{Numerical Experiments}


\section{Conclusion}




\bibliographystyle{siam}
\bibliography{\jobname} 
\end{document}